----------------------------------------------------------------------------
| 5869 | |
| 5870 | //---------------------------------------------------------------------------- |
| 5871 | vtkDIYGhostUtilities::StructuredGridBlockStructure::StructuredGridBlockStructure( |
| 5872 | const int extent[6], int dim, vtkDataArray* points[6]) |
| 5873 | : GridBlockStructure(extent, dim) |
| 5874 | { |
| 5875 | for (int i = 0; i < 6; ++i) |
| 5876 | { |
| 5877 | this->OuterPointLayers[i] = vtkSmartPointer<vtkPoints>::New(); |
| 5878 | this->OuterPointLayers[i]->SetData(points[i]); |
| 5879 | points[i]->FastDelete(); |
| 5880 | } |
| 5881 | } |
| 5882 | |
| 5883 | //---------------------------------------------------------------------------- |
| 5884 | vtkDIYGhostUtilities::StructuredGridBlockStructure::StructuredGridBlockStructure( |
nothing calls this directly
no test coverage detected