mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 10:32:20 +00:00
Bugfix: flow wasn't adjusted for perimeters when a custom perimeters extrusion width was applied
This commit is contained in:
@@ -8,6 +8,8 @@ has 'polygon' => (
|
||||
handles => [qw(is_printable nearest_point_to reverse)],
|
||||
);
|
||||
|
||||
has 'flow_spacing' => (is => 'rw');
|
||||
|
||||
# see EXTR_ROLE_* constants in ExtrusionPath.pm
|
||||
has 'role' => (is => 'rw', required => 1);
|
||||
|
||||
@@ -52,6 +54,7 @@ sub split_at {
|
||||
return Slic3r::ExtrusionPath->new(
|
||||
polyline => Slic3r::Polyline->new(\@new_points),
|
||||
role => $self->role,
|
||||
flow_spacing => $self->flow_spacing,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user