| 120 | } |
| 121 | |
| 122 | Vector3f pickedPointToVector3( const VisualObject* object, const PickedPoint& point ) |
| 123 | { |
| 124 | auto opt = getPickedPointPosition( *object, point ); |
| 125 | if ( opt ) |
| 126 | return *opt; |
| 127 | assert( false ); |
| 128 | return {}; |
| 129 | } |
| 130 | |
| 131 | bool isPickedPointValid( const VisualObject* object, const PickedPoint& point ) |
| 132 | { |
nothing calls this directly
no test coverage detected