| 114 | } |
| 115 | |
| 116 | static bool ExtractMatrixPos3( void* srcVar, void* dstVar, float scale, const Vector4& offset ) |
| 117 | { |
| 118 | return TransformAndCopyVector<Vector3>( &static_cast<Matrix*>( srcVar )->GetTranslation(), dstVar, scale, offset ); |
| 119 | } |
| 120 | |
| 121 | static bool ExtractMatrixPos4( void* srcVar, void* dstVar, float scale, const Vector4& offset ) |
| 122 | { |
nothing calls this directly
no test coverage detected