| 121 | void SetTotalLength(double v[3]) { this->SetTotalLength(v[0], v[1], v[2]); } |
| 122 | void SetTotalLength(double x, double y, double z); |
| 123 | vtkGetVectorMacro(TotalLength, double, 3); |
| 124 | ///@} |
| 125 | |
| 126 | ///@{ |
| 127 | /** |
| 128 | * Set the normalized (0-1) length of the shaft. |
| 129 | */ |
| 130 | void SetNormalizedShaftLength(double v[3]) { this->SetNormalizedShaftLength(v[0], v[1], v[2]); } |
| 131 | void SetNormalizedShaftLength(double x, double y, double z); |
| 132 | vtkGetVectorMacro(NormalizedShaftLength, double, 3); |
| 133 | ///@} |
nothing calls this directly
no test coverage detected