Fusion.Core.Mathematics.Matrix3x2.Negate C# (CSharp) Méthode

Negate() public static méthode

Negates a matrix.
public static Negate ( Matrix3x2 &value, Matrix3x2 &result ) : void
value Matrix3x2 The matrix to be negated.
result Matrix3x2 When the method completes, contains the negated matrix.
Résultat void
        public static void Negate(ref Matrix3x2 value, out Matrix3x2 result)
        {
            result.M11 = -value.M11;
            result.M12 = -value.M12;
            result.M21 = -value.M21;
            result.M22 = -value.M22;
            result.M31 = -value.M31;
            result.M32 = -value.M32;
        }

Same methods

Matrix3x2::Negate ( Matrix3x2 value ) : Matrix3x2