From 49649f4cd848372852f4da53624e8b45ecfa19f2 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Sat, 11 Jun 2016 02:51:48 +0200 Subject: [PATCH] Mirror Y-axis of head polygon Apparently, the machine homes to maximum-Y, so the open end of the machine is on the other side. I'm rotating it 180 degrees. --- resources/definitions/printrbot_simple.def.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/definitions/printrbot_simple.def.json b/resources/definitions/printrbot_simple.def.json index 5950055a76..0116ba6244 100644 --- a/resources/definitions/printrbot_simple.def.json +++ b/resources/definitions/printrbot_simple.def.json @@ -22,10 +22,10 @@ "machine_nozzle_cool_down_speed": { "default_value": 2 }, "machine_head_with_fans_polygon": { "default_value": [ - [ -55, 20 ], - [ -55, -99999 ], - [ 49, -99999 ], - [ 49, 20 ] + [ 55, -20 ], + [ 55, 99999 ], + [ -49, 99999 ], + [ -49, -20 ] ] }, "gantry_height": { "default_value": 99999 },