------------------------------------------------------------------------------
| 183 | |
| 184 | //------------------------------------------------------------------------------ |
| 185 | void vtkAngleRepresentation2D::GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST |
| 186 | { |
| 187 | if (this->CenterRepresentation) |
| 188 | { |
| 189 | this->CenterRepresentation->GetDisplayPosition(pos); |
| 190 | pos[2] = 0.0; |
| 191 | } |
| 192 | else |
| 193 | { |
| 194 | pos[0] = pos[1] = pos[2] = 0.0; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | //------------------------------------------------------------------------------ |
| 199 | void vtkAngleRepresentation2D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST |
no test coverage detected