mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Adjustments to support immutable AxisAlignedBox.
Contributes to CURA-1504
This commit is contained in:
parent
a109396c0d
commit
d1f68143a4
2 changed files with 4 additions and 4 deletions
|
|
@ -50,8 +50,8 @@ class PlatformPhysics:
|
|||
|
||||
bbox = node.getBoundingBox()
|
||||
|
||||
build_volume_bounding_box = copy.deepcopy(self._build_volume.getBoundingBox())
|
||||
build_volume_bounding_box.setBottom(-9001) # Ignore intersections with the bottom
|
||||
# Ignore intersections with the bottom
|
||||
build_volume_bounding_box = self._build_volume.getBoundingBox().set(bottom=-9001)
|
||||
node._outside_buildarea = False
|
||||
|
||||
# Mark the node as outside the build volume if the bounding box test fails.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue