------------------------------------------------------------------------------
| 1202 | |
| 1203 | //------------------------------------------------------------------------------ |
| 1204 | void vtkStructuredImplicitConnectivity::ConstructOutput() |
| 1205 | { |
| 1206 | if (this->OutputGrid != nullptr) |
| 1207 | { |
| 1208 | this->OutputGrid->Clear(); |
| 1209 | delete this->OutputGrid; |
| 1210 | this->OutputGrid = nullptr; |
| 1211 | } |
| 1212 | |
| 1213 | this->OutputGrid = new vtk::detail::StructuredGrid(); |
| 1214 | this->OutputGrid->Initialize(this->InputGrid); |
| 1215 | } |
| 1216 | |
| 1217 | //------------------------------------------------------------------------------ |
| 1218 | void vtkStructuredImplicitConnectivity::UpdateNeighborList(int dim) |
no test coverage detected