------------------------------------------------------------------------------ Construct with all types of clipping turned off.
| 56 | //------------------------------------------------------------------------------ |
| 57 | // Construct with all types of clipping turned off. |
| 58 | vtkGeometryFilter::vtkGeometryFilter() |
| 59 | { |
| 60 | this->PointMinimum = 0; |
| 61 | this->PointMaximum = VTK_ID_MAX; |
| 62 | |
| 63 | this->CellMinimum = 0; |
| 64 | this->CellMaximum = VTK_ID_MAX; |
| 65 | |
| 66 | this->Extent[0] = -VTK_DOUBLE_MAX; |
| 67 | this->Extent[1] = VTK_DOUBLE_MAX; |
| 68 | this->Extent[2] = -VTK_DOUBLE_MAX; |
| 69 | this->Extent[3] = VTK_DOUBLE_MAX; |
| 70 | this->Extent[4] = -VTK_DOUBLE_MAX; |
| 71 | this->Extent[5] = VTK_DOUBLE_MAX; |
| 72 | |
| 73 | this->PointClipping = false; |
| 74 | this->CellClipping = false; |
| 75 | this->ExtentClipping = false; |
| 76 | |
| 77 | this->Merging = true; |
| 78 | this->Locator = nullptr; |
| 79 | this->OutputPointsPrecision = DEFAULT_PRECISION; |
| 80 | |
| 81 | this->FastMode = false; |
| 82 | this->RemoveGhostInterfaces = true; |
| 83 | |
| 84 | this->PieceInvariant = 0; |
| 85 | |
| 86 | this->PassThroughCellIds = 0; |
| 87 | this->PassThroughPointIds = 0; |
| 88 | this->OriginalCellIdsName = nullptr; |
| 89 | this->OriginalPointIdsName = nullptr; |
| 90 | |
| 91 | // optional 2nd input |
| 92 | this->SetNumberOfInputPorts(2); |
| 93 | |
| 94 | // Compatibility with vtkDataSetSurfaceFilter |
| 95 | this->NonlinearSubdivisionLevel = 1; |
| 96 | this->MatchBoundariesIgnoringCellOrder = 0; |
| 97 | |
| 98 | // Enable delegation to an internal vtkDataSetSurfaceFilter. |
| 99 | this->Delegation = true; |
| 100 | } |
| 101 | |
| 102 | //------------------------------------------------------------------------------ |
| 103 | vtkGeometryFilter::~vtkGeometryFilter() |
no test coverage detected