MapAround.Geometry.Coordinate3D.Equals C# (CSharp) Method

Equals() public method

Gets a value indicating whether this coordinate is equal to another. Comparisions performs with tolerance value stored in MapAround.Geometry.PlanimetryAlgorithms.Tolerance. Z values are not compared.
public Equals ( ICoordinate p ) : bool
p ICoordinate The MapAround.Geometry.ICoordinate implementor to compare with the current object
return bool
        public bool Equals(ICoordinate p)
        {
            return PlanimetryAlgorithms.Distance(this, p) < PlanimetryAlgorithms.Tolerance;
        }

Same methods

Coordinate3D::Equals ( object o ) : bool