| 119 | } |
| 120 | |
| 121 | static bool ExtractMatrixPos4( void* srcVar, void* dstVar, float scale, const Vector4& offset ) |
| 122 | { |
| 123 | return TransformAndCopyVector<Vector4>( &static_cast<Matrix*>( srcVar )->GetTranslation(), dstVar, scale, offset ); |
| 124 | } |
| 125 | |
| 126 | static bool Copy32BitFloatToVector3( void* srcVar, void* dstVar, float scale, const Vector4& offset ) |
| 127 | { |
nothing calls this directly
no test coverage detected