Accord.Math.Point3.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified Point3 is equal to this instance.
public Equals ( Point3 other ) : bool
other Point3 The to compare with this instance.
return bool
        public bool Equals(Point3 other)
        {
            return coordinates == other.coordinates;
        }

Same methods

Point3::Equals ( Point3 other, double tolerance ) : bool
Point3::Equals ( object obj ) : bool