Skip to content

Commit d8aa744

Browse files
committed
capitalized "enum" members
1 parent 6cf4343 commit d8aa744

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/compas/geometry/brep/trim.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ class BrepTrimIsoStatus(object):
77
NONE = 0
88
X = 1
99
Y = 2
10-
West = 3
11-
South = 4
12-
East = 5
13-
North = 6
10+
WEST = 3
11+
SOUTH = 4
12+
EAST = 5
13+
NORTH = 6
1414

1515

1616
class BrepTrim(Data):
@@ -20,7 +20,7 @@ class BrepTrim(Data):
2020
----------
2121
curve : :class:`~compas.geometry.NurbsCurve`, read_only
2222
Returns the geometry for this trim as a 2d curve.
23-
iso_status : literal(NONE|X|Y|West|South|East|North)
23+
iso_status : literal(NONE|X|Y|WEST|SOUTH|EAST|NORTH)
2424
The isoparametric curve direction on the surface.
2525
is_reversed : bool
2626
True if this trim is reversed from its associated edge curve and False otherwise.

0 commit comments

Comments
 (0)