mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-08 06:24:01 -06:00
Bugfix: sometimes first layer extrusion width was not applied
This commit is contained in:
parent
49916b6178
commit
a0fe93e8cf
2 changed files with 16 additions and 12 deletions
|
@ -11,11 +11,12 @@ has 'layer' => (
|
|||
is => 'ro',
|
||||
weak_ref => 1,
|
||||
required => 1,
|
||||
trigger => 1,
|
||||
handles => [qw(id slice_z print_z height flow)],
|
||||
);
|
||||
has 'region' => (is => 'ro', required => 1);
|
||||
has 'perimeter_flow' => (is => 'lazy');
|
||||
has 'infill_flow' => (is => 'lazy');
|
||||
has 'perimeter_flow' => (is => 'rw');
|
||||
has 'infill_flow' => (is => 'rw');
|
||||
|
||||
# collection of spare segments generated by slicing the original geometry;
|
||||
# these need to be merged in continuos (closed) polylines
|
||||
|
@ -47,18 +48,16 @@ has 'perimeters' => (is => 'rw', default => sub { [] });
|
|||
# ordered collection of extrusion paths to fill surfaces
|
||||
has 'fills' => (is => 'rw', default => sub { [] });
|
||||
|
||||
sub _build_perimeter_flow {
|
||||
sub _trigger_layer {
|
||||
my $self = shift;
|
||||
return $self->id == 0
|
||||
|
||||
$self->perimeter_flow($self->id == 0
|
||||
? $self->region->first_layer_flows->{perimeter}
|
||||
: $self->region->flows->{perimeter}
|
||||
}
|
||||
|
||||
sub _build_infill_flow {
|
||||
my $self = shift;
|
||||
return $self->id == 0
|
||||
: $self->region->flows->{perimeter});
|
||||
|
||||
$self->infill_flow($self->id == 0
|
||||
? $self->region->first_layer_flows->{infill}
|
||||
: $self->region->flows->{infill}
|
||||
: $self->region->flows->{infill});
|
||||
}
|
||||
|
||||
# build polylines from lines
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue