| 284 | } |
| 285 | |
| 286 | void vtkUniformHyperTreeGrid::CopyCoordinates(const vtkHyperTreeGrid* outputHTG) |
| 287 | { |
| 288 | vtkUniformHyperTreeGrid* output = |
| 289 | vtkUniformHyperTreeGrid::SafeDownCast(const_cast<vtkHyperTreeGrid*>(outputHTG)); |
| 290 | this->SetOrigin(output->GetOrigin()); |
| 291 | this->SetGridScale(output->GetGridScale()); |
| 292 | } |
| 293 | |
| 294 | void vtkUniformHyperTreeGrid::SetFixedCoordinates(unsigned int axis, double value) |
| 295 | { |
nothing calls this directly
no test coverage detected