| 697 | } |
| 698 | |
| 699 | bool PlaneGeometry::IsOnPlane(const Point3D &point) const { return Distance(point) < eps; } |
| 700 | bool PlaneGeometry::IsOnPlane(const Line3D &line) const |
| 701 | { |
| 702 | return ((Distance(line.GetPoint()) < eps) && (Distance(line.GetPoint2()) < eps)); |