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 11e2ae4 commit a202ca4Copy full SHA for a202ca4
src/compas_rhino/conversions/cylinder.py
@@ -46,6 +46,9 @@ def geometry(self, geometry):
46
faces = geometry.Faces
47
geometry = None
48
for face in faces:
49
+ # being too strict about what is considered a cylinder
50
+ # results in cylinders created by Rhino itself
51
+ # to not be recognized...
52
if face.IsCylinder(0.001):
53
result, geometry = face.TryGetFiniteCylinder(0.001)
54
if result:
0 commit comments