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

Equals() public méthode

Determines whether the specified Matrix3x2 is equal to this instance.
public Equals ( Matrix3x2 other ) : bool
other Matrix3x2 The to compare with this instance.
Résultat bool
        public bool Equals(Matrix3x2 other)
        {
            return (MathUtil.NearEqual(other.M11, M11) &&
                MathUtil.NearEqual(other.M12, M12) &&
                MathUtil.NearEqual(other.M21, M21) &&
                MathUtil.NearEqual(other.M22, M22) &&
                MathUtil.NearEqual(other.M31, M31) &&
                MathUtil.NearEqual(other.M32, M32));
        }

Same methods

Matrix3x2::Equals ( object value ) : bool