MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / SetMatrix

Method SetMatrix

Source/Engine/Core/Math/Matrix.cpp:899–915  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

897}
898
899void Matrix3x4::SetMatrix(const Matrix& m)
900{
901 const float* src = m.Raw;
902 float* dst = Raw;
903 dst[0] = src[0];
904 dst[1] = src[1];
905 dst[2] = src[2];
906 dst[3] = src[3];
907 dst[4] = src[4];
908 dst[5] = src[5];
909 dst[6] = src[6];
910 dst[7] = src[7];
911 dst[8] = src[8];
912 dst[9] = src[9];
913 dst[10] = src[10];
914 dst[11] = src[11];
915}
916
917void Matrix3x4::SetMatrixTranspose(const Matrix& m)
918{

Callers 11

OnRenderMethod · 0.45
SetupLightMethod · 0.45
PrepareMethod · 0.45
UpdateCachedDataMethod · 0.45
SetUpMethod · 0.45
SetFaceMethod · 0.45
SetProjectorMethod · 0.45
CopyFromMethod · 0.45
BindMethod · 0.45
BindMethod · 0.45
UpdateCacheMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected