| 44 | */ |
| 45 | void SetMagnificationFactors(double fx, double fy, double fz); |
| 46 | void SetMagnificationFactors(const double f[3]) |
| 47 | { |
| 48 | this->SetMagnificationFactors(f[0], f[1], f[2]); |
| 49 | } |
| 50 | vtkGetVector3Macro(MagnificationFactors, double); |
| 51 | void SetAxisMagnificationFactor(int axis, double factor); |
| 52 | ///@} |
nothing calls this directly
no test coverage detected