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 b43cc24 commit 1f48e8dCopy full SHA for 1f48e8d
src/compas_rhino/geometry/brep/trim.py
@@ -80,7 +80,7 @@ def __from_data__(cls, data, builder):
80
try:
81
iso_status = getattr(Rhino.Geometry.IsoStatus, data["iso"])
82
except AttributeError:
83
- # due to discrepency in how IsoStatus.None looks like in Rhino7 vs Rhino8 (`IsoStatus.NONE`)
+ # due to discrepancy in how IsoStatus.None looks like in Rhino7 vs Rhino8 (`IsoStatus.NONE`)
84
iso_status = Rhino.Geometry.IsoStatus.NONE
85
is_reversed = True if data["is_reversed"] == "true" else False
86
instance.native_trim = builder.add_trim(curve, data["edge"], is_reversed, iso_status, data["start_vertex"])
0 commit comments