------------------------------------------------------------------------------
| 1004 | |
| 1005 | //------------------------------------------------------------------------------ |
| 1006 | void vtkCamera::SetWindowCenter(double x, double y) |
| 1007 | { |
| 1008 | if (this->WindowCenter[0] != x || this->WindowCenter[1] != y) |
| 1009 | { |
| 1010 | this->Modified(); |
| 1011 | this->ViewingRaysModified(); |
| 1012 | this->WindowCenter[0] = x; |
| 1013 | this->WindowCenter[1] = y; |
| 1014 | } |
| 1015 | } |
| 1016 | |
| 1017 | //------------------------------------------------------------------------------ |
| 1018 | void vtkCamera::SetObliqueAngles(double alpha, double beta) |
no test coverage detected