| 75 | } |
| 76 | |
| 77 | void ConeObject::setDirection( const Vector3f& normal, ViewportId id /*= {}*/ ) |
| 78 | { |
| 79 | auto currentXf = xf( id ); |
| 80 | |
| 81 | currentXf.A = getConeRotationMatrix( normal ) * s_.get( id ); |
| 82 | setXf( currentXf, id ); |
| 83 | } |
| 84 | |
| 85 | void ConeObject::setCenter( const Vector3f& center, ViewportId id /*= {}*/ ) |
| 86 | { |
nothing calls this directly
no test coverage detected