------------------------------------------------------------------------------
| 1116 | |
| 1117 | //------------------------------------------------------------------------------ |
| 1118 | void vtkCoordinateFrameRepresentation::SetOrigin(double x, double y, double z) |
| 1119 | { |
| 1120 | double origin[3] = { x, y, z }; |
| 1121 | this->SetOrigin(origin); |
| 1122 | } |
| 1123 | |
| 1124 | //------------------------------------------------------------------------------ |
| 1125 | void vtkCoordinateFrameRepresentation::SetOrigin(double x[3]) |
no test coverage detected