| 500 | } |
| 501 | |
| 502 | float4x4 float4x4_compose(float3 pos, float4 rot, float3 scale) { |
| 503 | mat44f mat; |
| 504 | v_mat44_compose(mat, pos, rot, scale); |
| 505 | return reinterpret_cast<float4x4&>(mat); |
| 506 | } |
| 507 | |
| 508 | void float4x4_decompose(const float4x4 & mat, float3 & pos, float4 & rot, float3 & scale) { |
| 509 | mat44f gmat; |
nothing calls this directly
no test coverage detected