mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 06:00:51 +00:00
Fix #5932
This commit is contained in:
@@ -206,7 +206,7 @@ class Raycast(bonsai.core.tool.Raycast):
|
|||||||
|
|
||||||
bm.free()
|
bm.free()
|
||||||
snapping_points = []
|
snapping_points = []
|
||||||
sorted_points = sorted(points)
|
sorted_points = sorted(points, key=lambda x : x[0])
|
||||||
for p in sorted_points:
|
for p in sorted_points:
|
||||||
point = copy.deepcopy(p)
|
point = copy.deepcopy(p)
|
||||||
snapping_points.append(point[1])
|
snapping_points.append(point[1])
|
||||||
|
|||||||
Reference in New Issue
Block a user