Dynamic extrusion width for better gap filling

This commit is contained in:
Alessandro Ranellucci 2012-08-25 14:23:46 +02:00
parent 65b11fa850
commit 0aa224ffad
6 changed files with 136 additions and 21 deletions

View file

@ -55,4 +55,14 @@ sub _build_spacing {
return $self->width - &Slic3r::OVERLAP_FACTOR * ($self->width - $min_flow_spacing);
}
sub clone {
my $self = shift;
return (ref $self)->new(
nozzle_diameter => $self->nozzle_diameter,
layer_height => $self->layer_height,
@_,
);
}
1;