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

◆ operator+()

static Matrix3x2 System.Numerics.Matrix3x2.operator+ ( Matrix3x2 value1,
Matrix3x2 value2 )
inlinestatic

Definition at line 50 of file Matrix3x2.cs.

51 {
52 System.Runtime.CompilerServices.Unsafe.SkipInit(out Matrix3x2 result);
53 result.M11 = value1.M11 + value2.M11;
54 result.M12 = value1.M12 + value2.M12;
55 result.M21 = value1.M21 + value2.M21;
56 result.M22 = value1.M22 + value2.M22;
57 result.M31 = value1.M31 + value2.M31;
58 result.M32 = value1.M32 + value2.M32;
59 return result;
60 }
Matrix3x2(float m11, float m12, float m21, float m22, float m31, float m32)
Definition Matrix3x2.cs:40

References System.Numerics.Matrix3x2.M11, System.Numerics.Matrix3x2.M12, System.Numerics.Matrix3x2.M21, System.Numerics.Matrix3x2.M22, System.Numerics.Matrix3x2.M31, and System.Numerics.Matrix3x2.M32.