Пример #1
0
 public bool EqualsTol(double tol, BBox3D other)
 {
     if (IsEmpty)
     {
         return(other.IsEmpty);
     }
     if (other.IsEmpty)
     {
         return(false);
     }
     return(Min.EqualsTol(tol, other.Min) && Max.EqualsTol(tol, other.Max));
 }