2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Surface;
|
2011-09-06 09:50:43 +00:00
|
|
|
use Moo;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
has 'expolygon' => (
|
|
|
|
is => 'ro',
|
|
|
|
required => 1,
|
|
|
|
handles => [qw(encloses_point lines contour holes)],
|
2011-09-01 19:06:28 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
has 'surface_type' => (
|
|
|
|
is => 'rw',
|
2011-09-25 20:11:56 +00:00
|
|
|
#isa => enum([qw(internal internal-solid bottom top)]),
|
2011-09-01 19:06:28 +00:00
|
|
|
);
|
|
|
|
|
2011-10-18 13:57:53 +00:00
|
|
|
# this integer represents the thickness of the surface expressed in layers
|
|
|
|
has 'depth_layers' => (is => 'ro', default => sub {1});
|
|
|
|
|
2011-11-23 08:49:39 +00:00
|
|
|
has 'bridge_angle' => (is => 'ro');
|
|
|
|
|
2011-11-26 14:21:15 +00:00
|
|
|
# static method to group surfaces having same surface_type, bridge_angle and depth_layers
|
2011-11-23 08:49:39 +00:00
|
|
|
sub group {
|
|
|
|
my $class = shift;
|
2011-11-23 11:29:27 +00:00
|
|
|
my $params = ref $_[0] eq 'HASH' ? shift(@_) : {};
|
2011-11-23 08:49:39 +00:00
|
|
|
my (@surfaces) = @_;
|
|
|
|
|
2011-11-29 10:36:52 +00:00
|
|
|
my %unique_types = ();
|
2011-11-23 08:49:39 +00:00
|
|
|
foreach my $surface (@surfaces) {
|
2011-11-29 10:36:52 +00:00
|
|
|
my $type = ($params->{merge_solid} && $surface->surface_type =~ /top|bottom|solid/)
|
|
|
|
? 'solid'
|
|
|
|
: $surface->surface_type;
|
2011-12-03 17:31:31 +00:00
|
|
|
$type .= "_" . ($surface->bridge_angle // ''); #/
|
2011-11-30 19:32:28 +00:00
|
|
|
$type .= "_" . $surface->depth_layers;
|
2011-11-29 10:36:52 +00:00
|
|
|
$unique_types{$type} ||= [];
|
|
|
|
push @{ $unique_types{$type} }, $surface;
|
2011-11-23 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2011-11-29 10:36:52 +00:00
|
|
|
return values %unique_types;
|
2011-11-23 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2012-02-10 13:42:54 +00:00
|
|
|
sub offset {
|
|
|
|
my $self = shift;
|
2012-02-13 17:02:54 +00:00
|
|
|
return map {
|
|
|
|
(ref $self)->new(
|
|
|
|
expolygon => $_,
|
|
|
|
map { $_ => $self->$_ } qw(surface_type depth_layers bridge_angle),
|
|
|
|
)
|
|
|
|
} $self->expolygon->offset_ex(@_);
|
2012-02-10 13:42:54 +00:00
|
|
|
}
|
|
|
|
|
2011-09-06 09:50:43 +00:00
|
|
|
sub add_hole {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2011-09-06 09:50:43 +00:00
|
|
|
my ($hole) = @_;
|
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
push @$self, $hole;
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub id {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->contour->id;
|
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub clipper_polygon {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
return {
|
|
|
|
outer => $self->contour->p,
|
|
|
|
holes => [
|
|
|
|
map $_->p, @{$self->holes}
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-09-25 20:11:56 +00:00
|
|
|
sub p {
|
2012-01-12 21:05:35 +00:00
|
|
|
my $self = shift;
|
2011-12-30 18:59:51 +00:00
|
|
|
return @{$self->expolygon};
|
2011-09-05 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|