Ejemplo n.º 1
0
 /// <summary>
 /// Makes a planar checks for if the points is spatially equal to another point.
 /// </summary>
 /// <param name="other">Point to check against</param>
 /// <returns>True if X and Y values are the same</returns>
 public bool Equals2D(CPoint other, double dblVerySmall)
 {
     return(CCmpMethods.ConvertCmpToBool(CCmpMethods.CmpCptYX(this, other)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Makes a planar checks for if the points is spatially equal to another point.
 /// </summary>
 /// <param name="other">Point to check against</param>
 /// <returns>True if X and Y values are the same</returns>
 public bool Equals2D(CPoint other)
 {
     return(CCmpMethods.ConvertCmpToBool(CCmpMethods.CmpCptYX(this, other)));
 }