Fix angle to 28 degrees for now.
Some checks failed
conan-package-resources / conan-package (push) Has been cancelled
conan-package / conan-package (push) Has been cancelled
printer-linter-format / Printer linter auto format (push) Has been cancelled
unit-test / Run unit tests (push) Has been cancelled
conan-package-resources / signal-curator (push) Has been cancelled

CURA-12568
This commit is contained in:
Remco Burema 2025-06-18 10:17:53 +02:00
parent 31f773348a
commit 0209067cd6
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ class BlackBeltDecorator(SceneNodeDecorator):
#self._gantry_angle = 0
#self._transform_matrix = Matrix()
# return Matrix()
gantry_angle = 0.7 #math.radians(float(gantry_angle))
gantry_angle = 0.48869219 #math.radians(float(gantry_angle))
machine_depth = global_stack.getProperty("machine_depth", "value")

View file

@ -460,7 +460,7 @@ class StartSliceJob(Job):
stack_id = stack.getId()
# Adapt layer_height and material_flow for a slanted gantry
gantry_angle = 0.7 #self._scene.getRoot().callDecoration("getGantryAngle")
gantry_angle = 0.48869219 #self._scene.getRoot().callDecoration("getGantryAngle")
if gantry_angle: # not 0 or None
# Act on a copy of the stack, so these changes don't cause a reslice
_stack = CuraContainerStack(stack_id + "_temp")