| 1341 | //----------------------------------------------------------------------------- |
| 1342 | |
| 1343 | void SceneObject::getMountTransform( S32 index, const MatrixF &xfm, MatrixF *outMat ) |
| 1344 | { |
| 1345 | MatrixF mountTransform( xfm ); |
| 1346 | const Point3F &scale = getScale(); |
| 1347 | Point3F position = mountTransform.getPosition(); |
| 1348 | position.convolve( scale ); |
| 1349 | mountTransform.setPosition( position ); |
| 1350 | |
| 1351 | outMat->mul( mObjToWorld, mountTransform ); |
| 1352 | } |
| 1353 | |
| 1354 | //----------------------------------------------------------------------------- |
| 1355 |
nothing calls this directly
no test coverage detected