PrusaSlicer-NonPlainar/lib/Slic3r/Surface.pm

90 lines
2 KiB
Perl
Raw Normal View History

2011-09-01 19:06:28 +00:00
package Slic3r::Surface;
use Moose;
2011-09-02 19:10:20 +00:00
use Math::Geometry::Planar;
2011-09-01 19:06:28 +00:00
use Moose::Util::TypeConstraints;
has 'contour' => (
is => 'ro',
isa => 'Slic3r::Polyline::Closed',
required => 1,
);
has 'holes' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef[Slic3r::Polyline::Closed]',
default => sub { [] },
handles => {
'add_hole' => 'push',
},
);
2011-09-05 10:21:27 +00:00
# TODO: to allow for multiple solid skins to be filled near external
# surfaces, a new type should be defined: internal-solid
2011-09-01 19:06:28 +00:00
has 'surface_type' => (
is => 'rw',
isa => enum([qw(internal bottom top)]),
);
after 'add_hole' => sub {
my $self = shift;
# add a weak reference to this surface in polyline objects
# (avoid circular refs)
$self->holes->[-1]->hole_of($self);
};
sub BUILD {
my $self = shift;
# add a weak reference to this surface in polyline objects
# (avoid circular refs)
$self->contour->contour_of($self) if $self->contour;
$_->hole_of($self) for @{ $self->holes };
}
sub new_from_mgp {
my $self = shift;
2011-09-05 10:21:27 +00:00
my ($polygon, %params) = @_;
my ($contour_p, @holes_p) = @{ $polygon->polygons };
return __PACKAGE__->new(
contour => Slic3r::Polyline::Closed->new_from_points(@$contour_p),
holes => [
map Slic3r::Polyline::Closed->new_from_points(@$_), @holes_p
],
2011-09-05 10:21:27 +00:00
%params,
);
}
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-02 19:10:20 +00:00
sub mgp_polygon {
my $self = shift;
my $p = Math::Geometry::Planar->new;
$p->polygons([ map $_->points, $self->contour->mgp_polygon, map($_->mgp_polygon, @{ $self->holes }) ]);
return $p;
}
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;