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
|
|
|
|
|
|
|
has 'contour' => (
|
|
|
|
is => 'ro',
|
2011-09-06 09:50:43 +00:00
|
|
|
#isa => 'Slic3r::Polyline::Closed',
|
2011-09-01 19:06:28 +00:00
|
|
|
required => 1,
|
|
|
|
);
|
|
|
|
|
|
|
|
has 'holes' => (
|
|
|
|
traits => ['Array'],
|
|
|
|
is => 'rw',
|
2011-09-06 09:50:43 +00:00
|
|
|
#isa => 'ArrayRef[Slic3r::Polyline::Closed]',
|
2011-09-01 19:06:28 +00:00
|
|
|
default => sub { [] },
|
|
|
|
);
|
|
|
|
|
|
|
|
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-10-07 17:07:57 +00:00
|
|
|
sub cast_from_polygon {
|
|
|
|
my $class = shift;
|
|
|
|
my ($polygon, %args) = @_;
|
|
|
|
|
|
|
|
return $class->new(
|
|
|
|
contour => Slic3r::Polyline::Closed->cast($polygon),
|
|
|
|
%args,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub cast_from_expolygon {
|
|
|
|
my $class = shift;
|
|
|
|
my ($expolygon, %args) = @_;
|
|
|
|
|
2011-11-11 09:21:48 +00:00
|
|
|
if (ref $expolygon eq 'HASH') {
|
|
|
|
$expolygon = Slic3r::ExPolygon->new($expolygon);
|
2011-10-15 09:36:05 +00:00
|
|
|
}
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
return $class->new(
|
2011-11-11 09:21:48 +00:00
|
|
|
contour => $expolygon->contour->closed_polyline,
|
|
|
|
holes => [ map $_->closed_polyline, $expolygon->holes ],
|
2011-10-07 17:07:57 +00:00
|
|
|
%args,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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) = @_;
|
|
|
|
|
|
|
|
push @{ $self->holes }, $hole;
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub id {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->contour->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub encloses_point {
|
|
|
|
my $self = shift;
|
|
|
|
my ($point) = @_;
|
|
|
|
|
|
|
|
return 0 if !$self->contour->encloses_point($point);
|
|
|
|
return 0 if grep $_->encloses_point($point), @{ $self->holes };
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
my $self = shift;
|
|
|
|
return ($self->contour->p, map $_->p, @{$self->holes});
|
|
|
|
}
|
|
|
|
|
2011-10-15 09:36:05 +00:00
|
|
|
sub expolygon {
|
|
|
|
my $self = shift;
|
|
|
|
return Slic3r::ExPolygon->new($self->contour->p, map $_->p, @{$self->holes});
|
|
|
|
}
|
|
|
|
|
2011-09-05 10:21:27 +00:00
|
|
|
sub lines {
|
|
|
|
my $self = shift;
|
|
|
|
return @{ $self->contour->lines }, map @{ $_->lines }, @{ $self->holes };
|
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|