Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2016-03-25 12:59:11 +0300
committerJaime van Kessel <nallath@gmail.com>2016-03-25 12:59:11 +0300
commit99de21fba77e8766ea74b4f18a2e15751912ebff (patch)
tree4e8410f388ffce1ab3772de878388f98fce4ce0a /cura/PlatformPhysics.py
parent6c2878221d18c23277e8421a488a8a8fb532b13b (diff)
Setting one at a time mode now decreases size of build volume
CURA-1245 CURA-1224
Diffstat (limited to 'cura/PlatformPhysics.py')
-rw-r--r--cura/PlatformPhysics.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py
index 95951f78dd..5299f4c5d0 100644
--- a/cura/PlatformPhysics.py
+++ b/cura/PlatformPhysics.py
@@ -65,11 +65,6 @@ class PlatformPhysics:
# 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
- else:
- # When printing one at a time too high objects are not printable.
- if Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("print_sequence") == "one_at_a_time":
- if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"):
- node._outside_buildarea = True
# Move it downwards if bottom is above platform
move_vector = Vector()