mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 03:29:00 +08:00
Fixed outside boundary check boo boo. CURA-3239
This commit is contained in:
parent
203ebcf1a1
commit
91edf5589e
@ -208,7 +208,7 @@ class BuildVolume(SceneNode):
|
||||
# Mark the node as outside the build volume if the bounding box test fails.
|
||||
if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection:
|
||||
node._outside_buildarea = True
|
||||
break
|
||||
continue
|
||||
|
||||
convex_hull = node.callDecoration("getConvexHull")
|
||||
if convex_hull:
|
||||
@ -220,7 +220,7 @@ class BuildVolume(SceneNode):
|
||||
if overlap is None:
|
||||
continue
|
||||
node._outside_buildarea = True
|
||||
break
|
||||
continue
|
||||
|
||||
# Group nodes should override the _outside_buildarea property of their children.
|
||||
for group_node in group_nodes:
|
||||
|
Loading…
x
Reference in New Issue
Block a user