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

Negate() public static méthode

Negates a matrix.
public static Negate ( Matrix3x2 value ) : Matrix3x2
value Matrix3x2 The matrix to be negated.
Résultat Matrix3x2
        public static Matrix3x2 Negate(Matrix3x2 value)
        {
            Matrix3x2 result;
            Negate(ref value, out result);
            return result;
        }

Same methods

Matrix3x2::Negate ( Matrix3x2 &value, Matrix3x2 &result ) : void