From df4dcf053483993daa9decb7c7394c0d8a60385a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 29 Oct 2012 11:21:41 +0100 Subject: [PATCH] =?UTF-8?q?Move=20by=2030=C2=B0=20instead=20of=2045=C2=B0?= =?UTF-8?q?=20when=20completing=20an=20external=20loop.=20#186?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/Slic3r/GCode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GCode.pm b/lib/Slic3r/GCode.pm index 1cc06fe97..658fca26a 100644 --- a/lib/Slic3r/GCode.pm +++ b/lib/Slic3r/GCode.pm @@ -149,7 +149,7 @@ sub extrude_path { if (points_coincide($last_line->[B], $self->last_pos)) { my $point = Slic3r::Geometry::point_along_segment(@$last_line, $last_line->length + scale $self->layer->flow->spacing); bless $point, 'Slic3r::Point'; - $point->rotate(PI/4, $last_line->[B]); + $point->rotate(PI/6, $last_line->[B]); $gcode .= $self->G0($point, undef, 0, "move inwards before travel"); } }