| 1354 | //----------------------------------------------------------------------------- |
| 1355 | |
| 1356 | void SceneObject::getRenderMountTransform( F32 delta, S32 index, const MatrixF &xfm, MatrixF *outMat ) |
| 1357 | { |
| 1358 | MatrixF mountTransform( xfm ); |
| 1359 | const Point3F &scale = getScale(); |
| 1360 | Point3F position = mountTransform.getPosition(); |
| 1361 | position.convolve( scale ); |
| 1362 | mountTransform.setPosition( position ); |
| 1363 | |
| 1364 | outMat->mul( mRenderObjToWorld, mountTransform ); |
| 1365 | } |
| 1366 | |
| 1367 | //============================================================================= |
| 1368 | // Console API. |
nothing calls this directly
no test coverage detected