2011-10-15 09:36:05 +00:00
|
|
|
package Slic3r::Polygon;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
# a polygon is a closed polyline.
|
|
|
|
# if you're asking why there's a Slic3r::Polygon as well
|
|
|
|
# as a Slic3r::Polyline::Closed you're right. I plan to
|
|
|
|
# ditch the latter and port everything to this class.
|
|
|
|
|
2011-11-11 09:21:48 +00:00
|
|
|
use Slic3r::Geometry qw(polygon_lines polygon_remove_parallel_continuous_edges);
|
2011-10-15 09:36:05 +00:00
|
|
|
|
|
|
|
# the constructor accepts an array(ref) of points
|
|
|
|
sub new {
|
|
|
|
my $class = shift;
|
|
|
|
my $self;
|
|
|
|
if (@_ == 1) {
|
|
|
|
$self = [ @{$_[0]} ];
|
|
|
|
} else {
|
|
|
|
$self = [ @_ ];
|
|
|
|
}
|
2011-11-11 09:21:48 +00:00
|
|
|
|
|
|
|
@$self = map Slic3r::Point->cast($_), @$self;
|
2011-10-15 09:36:05 +00:00
|
|
|
bless $self, $class;
|
|
|
|
$self;
|
|
|
|
}
|
|
|
|
|
2011-11-11 09:21:48 +00:00
|
|
|
# legacy method, to be removed when we ditch Slic3r::Polyline::Closed
|
|
|
|
sub closed_polyline {
|
|
|
|
my $self = shift;
|
|
|
|
return Slic3r::Polyline::Closed->cast($self);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub lines {
|
|
|
|
my $self = shift;
|
|
|
|
return map Slic3r::Line->new($_), polygon_lines($self);
|
|
|
|
}
|
|
|
|
|
2011-10-15 09:36:05 +00:00
|
|
|
sub cleanup {
|
|
|
|
my $self = shift;
|
|
|
|
polygon_remove_parallel_continuous_edges($self);
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|