Exemplo n.º 1
0
 public bool IsNear(VInt2 point)
 {
     return(BaseAlgorithm.IsNearlyZero(this.m_point - point, 10));
 }
Exemplo n.º 2
0
 public bool Equals(FowLos.SPolylineVertex rhs)
 {
     return(BaseAlgorithm.IsNearlyZero(this.m_point - rhs.m_point, 10) && this.m_belongBlockId == rhs.m_belongBlockId && this.m_belongSegNoList == rhs.m_belongSegNoList && this.m_bNative == rhs.m_bNative);
 }