Skip to content

Commit 4025730

Browse files
committed
typo
1 parent 8985c4a commit 4025730

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • src/compas_rhino/geometry/brep

src/compas_rhino/geometry/brep/face.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
from __future__ import division
33
from __future__ import print_function
44

5-
from compas.tolerance import Tolerance
6-
75
import Rhino # type: ignore
86

97
from compas.geometry import Brep
@@ -12,6 +10,7 @@
1210
from compas.geometry import Frame
1311
from compas.geometry import Sphere
1412
from compas.geometry import SurfaceType
13+
from compas.tolerance import Tolerance
1514
from compas_rhino.conversions import cylinder_to_compas
1615
from compas_rhino.conversions import cylinder_to_rhino
1716
from compas_rhino.conversions import frame_to_rhino_plane
@@ -373,10 +372,9 @@ def is_point_on_face(self, u, v):
373372
return True
374373
if relation == Rhino.Geometry.PointFaceRelation.Boundary:
375374
return True
376-
if relation == Rhino.Geometry.PointFaceRelation.Exterior
375+
if relation == Rhino.Geometry.PointFaceRelation.Exterior:
377376
return False
378377

379-
380378
def is_point_on_boundary(self, u, v):
381379
"""Returns True if the point is on the boundary of the face.
382380

0 commit comments

Comments
 (0)