| 58 | } |
| 59 | |
| 60 | Vector3f PointMeasurementObject::getWorldPoint( ViewportId id ) const |
| 61 | { |
| 62 | Vector3f ret = getLocalPoint( id ); |
| 63 | if ( parent() ) |
| 64 | ret = parent()->worldXf( id )( ret ); |
| 65 | return ret; |
| 66 | } |
| 67 | |
| 68 | void PointMeasurementObject::setLocalPoint( const Vector3f& point, ViewportId id ) |
| 69 | { |