mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 23:27:54 +00:00
Fix #5871
This commit is contained in:
@@ -1558,7 +1558,7 @@ class Model(bonsai.core.tool.Model):
|
|||||||
if group_count != 2: # Each circle needs 2 verts
|
if group_count != 2: # Each circle needs 2 verts
|
||||||
return (False, "CIRCLE")
|
return (False, "CIRCLE")
|
||||||
|
|
||||||
loop_edges = set(bm.edges)
|
loop_edges = list(bm.edges)
|
||||||
|
|
||||||
# Create loops from edges
|
# Create loops from edges
|
||||||
loops = []
|
loops = []
|
||||||
@@ -1775,7 +1775,7 @@ class Model(bonsai.core.tool.Model):
|
|||||||
if group_count != 2: # Each circle needs 2 verts
|
if group_count != 2: # Each circle needs 2 verts
|
||||||
return (False, "CIRCLE")
|
return (False, "CIRCLE")
|
||||||
|
|
||||||
loop_edges = set(bm.edges)
|
loop_edges = list(bm.edges)
|
||||||
|
|
||||||
# Create loops from edges
|
# Create loops from edges
|
||||||
loops = []
|
loops = []
|
||||||
|
|||||||
Reference in New Issue
Block a user