------------------------------------------------------------------------------
| 1317 | |
| 1318 | //------------------------------------------------------------------------------ |
| 1319 | void vtkParallelopipedRepresentation::PositionHandles() |
| 1320 | { |
| 1321 | for (int i = 0; i < 8; ++i) |
| 1322 | { |
| 1323 | this->HandleRepresentations[i]->SetWorldPosition(this->Points->GetPoint(i)); |
| 1324 | } |
| 1325 | |
| 1326 | this->Points->GetData()->Modified(); |
| 1327 | this->HexFacePolyData->Modified(); |
| 1328 | this->HexPolyData->Modified(); |
| 1329 | } |
| 1330 | |
| 1331 | //------------------------------------------------------------------------------ |
| 1332 | void vtkParallelopipedRepresentation::HandlesOn() |
no test coverage detected