------------------------------------------------------------------------------
| 77 | |
| 78 | //------------------------------------------------------------------------------ |
| 79 | double vtkPolygon::ComputeArea() |
| 80 | { |
| 81 | double normal[3]; // not used, but required for the |
| 82 | // following ComputeArea call |
| 83 | return vtkPolygon::ComputeArea( |
| 84 | this->GetPoints(), this->GetNumberOfPoints(), this->GetPointIds()->GetPointer(0), normal); |
| 85 | } |
| 86 | |
| 87 | //------------------------------------------------------------------------------ |
| 88 | bool vtkPolygon::IsConvex() |