Extrusion of perimeters

This commit is contained in:
Alessandro Ranellucci 2011-09-02 21:10:20 +02:00
parent 55a523e1fa
commit febd655e22
11 changed files with 206 additions and 5 deletions

View file

@ -5,6 +5,7 @@ use warnings;
use Slic3r::Layer;
use Slic3r::Line;
use Slic3r::Perimeter;
use Slic3r::Point;
use Slic3r::Polyline;
use Slic3r::Polyline::Closed;
@ -12,7 +13,9 @@ use Slic3r::Print;
use Slic3r::STL;
use Slic3r::Surface;
our $layer_height = 0.4;
our $resolution = 0.1;
our $layer_height = 0.4;
our $resolution = 0.1;
our $perimeter_offsets = 3;
our $flow_width = 0.4; # make sure this is > $resolution
1;