MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / Scale

Method Scale

SampleFramework12/v1.00/SF12_Math.cpp:1046–1059  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1044}
1045
1046void Float4x4::Scale(const Float3& scale)
1047{
1048 _11 *= scale.x;
1049 _12 *= scale.x;
1050 _13 *= scale.x;
1051
1052 _21 *= scale.y;
1053 _22 *= scale.y;
1054 _23 *= scale.y;
1055
1056 _31 *= scale.z;
1057 _32 *= scale.z;
1058 _33 *= scale.z;
1059}
1060
1061Float4x4 Float4x4::Transpose(const Float4x4& m)
1062{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected