------------------------------------------------------------------------------ Construct the hexahedron with eight points.
| 20 | //------------------------------------------------------------------------------ |
| 21 | // Construct the hexahedron with eight points. |
| 22 | vtkConvexPointSet::vtkConvexPointSet() |
| 23 | { |
| 24 | this->Tetra = vtkTetra::New(); |
| 25 | this->TetraIds = vtkIdList::New(); |
| 26 | this->TetraPoints = vtkPoints::New(); |
| 27 | this->TetraScalars = vtkDoubleArray::New(); |
| 28 | this->TetraScalars->SetNumberOfTuples(4); |
| 29 | this->BoundaryTris = vtkCellArray::New(); |
| 30 | this->BoundaryTris->AllocateEstimate(128, 3); |
| 31 | this->Triangle = vtkTriangle::New(); |
| 32 | this->Triangulator = vtkOrderedTriangulator::New(); |
| 33 | this->Triangulator->PreSortedOff(); |
| 34 | this->Triangulator->UseTemplatesOff(); |
| 35 | this->ParametricCoords = nullptr; |
| 36 | } |
| 37 | |
| 38 | //------------------------------------------------------------------------------ |
| 39 | vtkConvexPointSet::~vtkConvexPointSet() |
no test coverage detected