------------------------------------------------------------------------------ Return the projection transform object. See ComputeProjectionTransform.
| 1191 | //------------------------------------------------------------------------------ |
| 1192 | // Return the projection transform object. See ComputeProjectionTransform. |
| 1193 | vtkPerspectiveTransform* vtkCamera::GetProjectionTransformObject( |
| 1194 | double aspect, double nearz, double farz) |
| 1195 | { |
| 1196 | this->ComputeProjectionTransform(aspect, nearz, farz); |
| 1197 | |
| 1198 | // return the transform |
| 1199 | return this->ProjectionTransform; |
| 1200 | } |
| 1201 | |
| 1202 | //------------------------------------------------------------------------------ |
| 1203 | // Return the projection transform matrix. See ComputeProjectionTransform. |
no test coverage detected