mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-25 03:41:08 -07:00
Fix up BuildVolume's override of the AABB.
Contributes to CURA-1504
This commit is contained in:
parent
7aefb67172
commit
43747f3f57
2 changed files with 5 additions and 5 deletions
|
|
@ -27,7 +27,6 @@ class PlatformPhysics:
|
|||
self._controller.toolOperationStarted.connect(self._onToolOperationStarted)
|
||||
self._controller.toolOperationStopped.connect(self._onToolOperationStopped)
|
||||
self._build_volume = volume
|
||||
|
||||
self._enabled = True
|
||||
|
||||
self._change_timer = QTimer()
|
||||
|
|
@ -50,9 +49,6 @@ class PlatformPhysics:
|
|||
continue
|
||||
|
||||
bbox = node.getBoundingBox()
|
||||
if not bbox or not bbox.isValid():
|
||||
self._change_timer.start()
|
||||
continue
|
||||
|
||||
build_volume_bounding_box = copy.deepcopy(self._build_volume.getBoundingBox())
|
||||
build_volume_bounding_box.setBottom(-9001) # Ignore intersections with the bottom
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue