MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / float4x4_compose

Function float4x4_compose

src/builtin/module_builtin_math.cpp:502–506  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

v_mat44_composeFunction · 0.85

Tested by

no test coverage detected