1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-19 09:24:27 +00:00

Always move Z at travel speed. #1093

This commit is contained in:
Alessandro Ranellucci
2013-04-08 22:23:51 +02:00
parent 6b989203b4
commit 94ed6cd239
3 changed files with 11 additions and 1 deletions
+5
View File
@@ -39,6 +39,11 @@ sub scale_points (@) { map [scale $_->[X], scale $_->[Y]], @_ }
$surface->expolygon->rotate(Slic3r::Geometry::deg2rad($angle), [0,0]);
my ($params, @paths) = $filler->fill_surface($surface, flow_spacing => 0.69, density => 0.4);
is scalar @paths, 1, 'one continuous path';
use Slic3r::SVG;
Slic3r::SVG::output("fill.svg",
expolygons => [$surface->expolygon],
polylines => [@paths],
);exit;
}
}