------------------------------------------------------------------------------
| 1473 | |
| 1474 | //------------------------------------------------------------------------------ |
| 1475 | void vtkParallelopipedRepresentation::PlaceWidget(double bounds[6]) |
| 1476 | { |
| 1477 | double corners[8][3] = { { bounds[0], bounds[2], bounds[4] }, { bounds[1], bounds[2], bounds[4] }, |
| 1478 | { bounds[1], bounds[3], bounds[4] }, { bounds[0], bounds[3], bounds[4] }, |
| 1479 | { bounds[0], bounds[2], bounds[5] }, { bounds[1], bounds[2], bounds[5] }, |
| 1480 | { bounds[1], bounds[3], bounds[5] }, { bounds[0], bounds[3], bounds[5] } }; |
| 1481 | |
| 1482 | this->PlaceWidget(corners); |
| 1483 | } |
| 1484 | |
| 1485 | //------------------------------------------------------------------------------ |
| 1486 | void vtkParallelopipedRepresentation::PlaceWidget(double corners[8][3]) |
no test coverage detected