2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Layer;
|
2011-09-06 09:50:43 +00:00
|
|
|
use Moo;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2012-12-20 17:47:40 +00:00
|
|
|
use List::Util qw(first);
|
2013-01-28 13:12:01 +00:00
|
|
|
use Slic3r::Geometry qw(scale);
|
2012-09-22 17:04:36 +00:00
|
|
|
use Slic3r::Geometry::Clipper qw(union_ex);
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2012-10-28 09:28:40 +00:00
|
|
|
has 'id' => (is => 'rw', required => 1, trigger => 1); # sequential number of layer, 0-based
|
2012-09-23 00:40:25 +00:00
|
|
|
has 'object' => (is => 'ro', weak_ref => 1, required => 1);
|
2012-09-23 00:52:31 +00:00
|
|
|
has 'regions' => (is => 'ro', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
has 'slicing_errors' => (is => 'rw');
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
has 'slice_z' => (is => 'lazy');
|
|
|
|
has 'print_z' => (is => 'lazy');
|
|
|
|
has 'height' => (is => 'lazy');
|
2013-01-01 22:28:48 +00:00
|
|
|
has 'flow' => (is => 'lazy');
|
2011-11-30 15:28:09 +00:00
|
|
|
|
2012-09-22 17:38:25 +00:00
|
|
|
# collection of expolygons generated by slicing the original geometry;
|
2012-09-23 00:52:31 +00:00
|
|
|
# also known as 'islands' (all regions are merged here)
|
2012-09-22 17:04:36 +00:00
|
|
|
has 'slices' => (is => 'rw');
|
2011-09-04 10:04:01 +00:00
|
|
|
|
2012-02-19 11:03:36 +00:00
|
|
|
# ordered collection of extrusion paths to fill surfaces for support material
|
2012-12-20 17:47:40 +00:00
|
|
|
has 'support_islands' => (is => 'rw');
|
2012-10-28 15:59:20 +00:00
|
|
|
has 'support_fills' => (is => 'rw');
|
|
|
|
has 'support_interface_fills' => (is => 'rw');
|
2011-09-05 10:21:27 +00:00
|
|
|
|
2012-10-28 09:28:40 +00:00
|
|
|
sub _trigger_id {
|
|
|
|
my $self = shift;
|
|
|
|
$_->_trigger_layer for @{$self->regions || []};
|
|
|
|
}
|
|
|
|
|
2012-10-28 15:59:20 +00:00
|
|
|
# Z used for slicing in scaled coordinates
|
2012-06-06 14:11:38 +00:00
|
|
|
sub _build_slice_z {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2012-06-06 14:11:38 +00:00
|
|
|
|
2013-01-28 13:12:01 +00:00
|
|
|
if ($Slic3r::Config->raft_layers == 0) {
|
|
|
|
if ($self->id == 0) {
|
|
|
|
return scale $Slic3r::Config->get_value('first_layer_height') / 2;
|
|
|
|
}
|
|
|
|
return scale($Slic3r::Config->get_value('first_layer_height') + ($self->id-1 + 0.5) * $Slic3r::Config->layer_height);
|
|
|
|
} else {
|
|
|
|
return -1 if $self->id < $Slic3r::Config->raft_layers;
|
|
|
|
my $object_layer_id = $self->id - $Slic3r::Config->raft_layers;
|
|
|
|
return scale ($object_layer_id + 0.5) * $Slic3r::Config->layer_height;
|
2011-11-13 18:08:19 +00:00
|
|
|
}
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
2012-10-28 15:59:20 +00:00
|
|
|
# Z used for printing in scaled coordinates
|
2012-06-06 14:11:38 +00:00
|
|
|
sub _build_print_z {
|
2011-11-07 15:04:27 +00:00
|
|
|
my $self = shift;
|
2012-07-27 19:13:03 +00:00
|
|
|
return ($Slic3r::Config->get_value('first_layer_height') + ($self->id * $Slic3r::Config->layer_height)) / &Slic3r::SCALING_FACTOR;
|
2011-11-07 15:04:27 +00:00
|
|
|
}
|
|
|
|
|
2012-10-28 15:59:20 +00:00
|
|
|
# layer height in unscaled coordinates
|
2012-06-06 14:11:38 +00:00
|
|
|
sub _build_height {
|
2012-01-30 13:03:12 +00:00
|
|
|
my $self = shift;
|
2012-07-27 19:13:03 +00:00
|
|
|
return $self->id == 0 ? $Slic3r::Config->get_value('first_layer_height') : $Slic3r::Config->layer_height;
|
2012-01-30 13:03:12 +00:00
|
|
|
}
|
|
|
|
|
2013-01-01 22:28:48 +00:00
|
|
|
sub _build_flow { $Slic3r::flow }
|
|
|
|
|
2012-10-28 15:59:20 +00:00
|
|
|
# layer height of interface paths in unscaled coordinates
|
|
|
|
sub support_material_interface_height {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
return $self->height if $self->id == 0;
|
|
|
|
|
|
|
|
# this is not very correct because:
|
|
|
|
# - we should sum our height with the actual upper layers height (which might be different)
|
|
|
|
# - we should use the actual flow of the upper layer bridges, not the default one
|
|
|
|
# ...but we're close enough for now
|
|
|
|
return 2*$self->height - $self->flow->nozzle_diameter;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Z used for printing support material interface in scaled coordinates
|
|
|
|
sub support_material_interface_z {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->print_z - ($self->height - $self->support_material_interface_height) / &Slic3r::SCALING_FACTOR;
|
|
|
|
}
|
|
|
|
|
2012-09-23 00:52:31 +00:00
|
|
|
sub region {
|
2012-04-29 10:51:20 +00:00
|
|
|
my $self = shift;
|
2012-09-23 00:52:31 +00:00
|
|
|
my ($region_id) = @_;
|
2012-04-29 10:51:20 +00:00
|
|
|
|
2012-11-05 14:59:31 +00:00
|
|
|
for (my $i = @{$self->regions}; $i <= $region_id; $i++) {
|
|
|
|
$self->regions->[$i] //= Slic3r::Layer::Region->new(
|
2012-09-23 00:52:31 +00:00
|
|
|
layer => $self,
|
2012-11-05 14:59:31 +00:00
|
|
|
region => $self->object->print->regions->[$i],
|
2012-07-20 13:02:25 +00:00
|
|
|
);
|
2012-04-29 10:51:20 +00:00
|
|
|
}
|
2012-11-05 14:59:31 +00:00
|
|
|
|
2012-09-23 00:52:31 +00:00
|
|
|
return $self->regions->[$region_id];
|
2012-04-29 10:51:20 +00:00
|
|
|
}
|
|
|
|
|
2012-09-23 00:52:31 +00:00
|
|
|
# merge all regions' slices to get islands
|
2012-09-22 17:04:36 +00:00
|
|
|
sub make_slices {
|
2011-11-30 19:32:28 +00:00
|
|
|
my $self = shift;
|
|
|
|
|
2012-09-23 00:52:31 +00:00
|
|
|
# optimization for single-region layers
|
|
|
|
my @regions_with_slices = grep { @{$_->slices} } @{$self->regions};
|
|
|
|
if (@regions_with_slices == 1) {
|
|
|
|
$self->slices([ map $_->expolygon, @{$regions_with_slices[0]->slices} ]);
|
2012-09-22 17:04:36 +00:00
|
|
|
return;
|
2011-09-26 09:59:06 +00:00
|
|
|
}
|
2011-10-07 17:07:57 +00:00
|
|
|
|
2012-09-23 00:52:31 +00:00
|
|
|
$self->slices(union_ex([ map $_->p, map @{$_->slices}, @{$self->regions} ]));
|
2011-10-07 17:07:57 +00:00
|
|
|
}
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
sub make_perimeters {
|
2011-10-07 17:07:57 +00:00
|
|
|
my $self = shift;
|
2012-09-22 17:04:36 +00:00
|
|
|
Slic3r::debugf "Making perimeters for layer %d\n", $self->id;
|
2012-09-23 00:52:31 +00:00
|
|
|
$_->make_perimeters for @{$self->regions};
|
2011-10-07 17:07:57 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 17:47:40 +00:00
|
|
|
sub support_islands_enclose_line {
|
|
|
|
my $self = shift;
|
|
|
|
my ($line) = @_;
|
|
|
|
return (first { $_->encloses_line($line) } @{$self->support_islands}) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|