------------------------------------------------------------------------------
| 1222 | |
| 1223 | //------------------------------------------------------------------------------ |
| 1224 | void vtkCoordinateFrameRepresentation::SetNormalToCamera() |
| 1225 | { |
| 1226 | if (!this->Renderer) |
| 1227 | { |
| 1228 | return; |
| 1229 | } |
| 1230 | |
| 1231 | double normal[3]; |
| 1232 | this->Renderer->GetActiveCamera()->GetViewPlaneNormal(normal); |
| 1233 | this->SetNormal(normal); |
| 1234 | } |
| 1235 | |
| 1236 | //------------------------------------------------------------------------------ |
| 1237 | void vtkCoordinateFrameRepresentation::SetDirection(double x, double y, double z) |
no test coverage detected