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

◆ Matrix4x4() [2/2]

System.Numerics.Matrix4x4.Matrix4x4 ( Matrix3x2 value)
inline

Definition at line 113 of file Matrix4x4.cs.

114 {
115 M11 = value.M11;
116 M12 = value.M12;
117 M13 = 0f;
118 M14 = 0f;
119 M21 = value.M21;
120 M22 = value.M22;
121 M23 = 0f;
122 M24 = 0f;
123 M31 = 0f;
124 M32 = 0f;
125 M33 = 1f;
126 M34 = 0f;
127 M41 = value.M31;
128 M42 = value.M32;
129 M43 = 0f;
130 M44 = 1f;
131 }

References System.Numerics.Matrix4x4.M11, System.Numerics.Matrix4x4.M12, System.Numerics.Matrix4x4.M13, System.Numerics.Matrix4x4.M14, System.Numerics.Matrix4x4.M21, System.Numerics.Matrix4x4.M22, System.Numerics.Matrix4x4.M23, System.Numerics.Matrix4x4.M24, System.Numerics.Matrix4x4.M31, System.Numerics.Matrix4x4.M32, System.Numerics.Matrix4x4.M33, System.Numerics.Matrix4x4.M34, System.Numerics.Matrix4x4.M41, System.Numerics.Matrix4x4.M42, System.Numerics.Matrix4x4.M43, System.Numerics.Matrix4x4.M44, and System.value.