Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateScale() [3/6]

static Matrix4x4 System.Numerics.Matrix4x4.CreateScale ( float xScale,
float yScale,
float zScale )
inlinestatic

Definition at line 718 of file Matrix4x4.cs.

719 {
720 Matrix4x4 identity = Identity;
721 identity.M11 = xScale;
722 identity.M22 = yScale;
723 identity.M33 = zScale;
724 return identity;
725 }
Matrix4x4(float m11, float m12, float m13, float m14, float m21, float m22, float m23, float m24, float m31, float m32, float m33, float m34, float m41, float m42, float m43, float m44)
Definition Matrix4x4.cs:93
static Matrix4x4 Identity
Definition Matrix4x4.cs:65

References System.Numerics.Matrix4x4.Identity.