Skip to content

Commit 0209067

Browse files
committed
Fix angle to 28 degrees for now.
CURA-12568
1 parent 31f7733 commit 0209067

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/CuraEngineBackend/BlackBeltDecorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def calculateTransformData() -> Matrix:
2626
#self._gantry_angle = 0
2727
#self._transform_matrix = Matrix()
2828
# return Matrix()
29-
gantry_angle = 0.7 #math.radians(float(gantry_angle))
29+
gantry_angle = 0.48869219 #math.radians(float(gantry_angle))
3030

3131
machine_depth = global_stack.getProperty("machine_depth", "value")
3232

plugins/CuraEngineBackend/StartSliceJob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ def run(self) -> None:
460460
stack_id = stack.getId()
461461

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

0 commit comments

Comments
 (0)