We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf4343 commit d8aa744Copy full SHA for d8aa744
src/compas/geometry/brep/trim.py
@@ -7,10 +7,10 @@ class BrepTrimIsoStatus(object):
7
NONE = 0
8
X = 1
9
Y = 2
10
- West = 3
11
- South = 4
12
- East = 5
13
- North = 6
+ WEST = 3
+ SOUTH = 4
+ EAST = 5
+ NORTH = 6
14
15
16
class BrepTrim(Data):
@@ -20,7 +20,7 @@ class BrepTrim(Data):
20
----------
21
curve : :class:`~compas.geometry.NurbsCurve`, read_only
22
Returns the geometry for this trim as a 2d curve.
23
- iso_status : literal(NONE|X|Y|West|South|East|North)
+ iso_status : literal(NONE|X|Y|WEST|SOUTH|EAST|NORTH)
24
The isoparametric curve direction on the surface.
25
is_reversed : bool
26
True if this trim is reversed from its associated edge curve and False otherwise.
0 commit comments