Implemented skirt

This commit is contained in:
Alessandro Ranellucci 2011-09-05 20:00:59 +02:00
parent d8b848a67f
commit ff5044c031
6 changed files with 38 additions and 5 deletions

View file

@ -46,6 +46,13 @@ has 'perimeters' => (
default => sub { [] },
);
# ordered collection of extrusion paths to build skirt loops
has 'skirts' => (
is => 'rw',
isa => 'ArrayRef[Slic3r::ExtrusionPath]',
default => sub { [] },
);
# collection of surfaces generated by offsetting the innermost perimeter(s)
# they represent boundaries of areas to fill
has 'fill_surfaces' => (