------------------------------------------------------------------------------
| 169 | |
| 170 | //------------------------------------------------------------------------------ |
| 171 | void vtkAngleRepresentation2D::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST |
| 172 | { |
| 173 | if (this->Point1Representation) |
| 174 | { |
| 175 | this->Point1Representation->GetDisplayPosition(pos); |
| 176 | pos[2] = 0.0; |
| 177 | } |
| 178 | else |
| 179 | { |
| 180 | pos[0] = pos[1] = pos[2] = 0.0; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | //------------------------------------------------------------------------------ |
| 185 | void vtkAngleRepresentation2D::GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST |
no test coverage detected