2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Surface;
|
2012-05-01 09:32:22 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2012-05-19 14:04:33 +00:00
|
|
|
require Exporter;
|
|
|
|
our @ISA = qw(Exporter);
|
2013-03-13 00:03:54 +00:00
|
|
|
our @EXPORT_OK = qw(S_TYPE_TOP S_TYPE_BOTTOM S_TYPE_INTERNAL S_TYPE_INTERNALSOLID S_TYPE_INTERNALBRIDGE S_TYPE_INTERNALVOID);
|
2012-05-19 14:04:33 +00:00
|
|
|
our %EXPORT_TAGS = (types => \@EXPORT_OK);
|
|
|
|
|
2012-05-01 09:32:22 +00:00
|
|
|
# delegate handles
|
|
|
|
sub encloses_point { $_[0]->expolygon->encloses_point }
|
|
|
|
sub lines { $_[0]->expolygon->lines }
|
|
|
|
sub contour { $_[0]->expolygon->contour }
|
|
|
|
sub holes { $_[0]->expolygon->holes }
|
2011-11-23 08:49:39 +00:00
|
|
|
|
2013-03-17 00:10:40 +00:00
|
|
|
# static method to group surfaces having same surface_type, bridge_angle and thickness*
|
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) {
|
2013-03-17 00:10:40 +00:00
|
|
|
my $type = join '_',
|
|
|
|
($params->{merge_solid} && $surface->is_solid) ? 'solid' : $surface->surface_type,
|
2013-03-17 13:58:10 +00:00
|
|
|
$surface->bridge_angle // '',
|
|
|
|
$surface->thickness // '',
|
2013-03-17 00:10:40 +00:00
|
|
|
$surface->thickness_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;
|
2013-07-16 22:48:29 +00:00
|
|
|
return [ map $self->clone(expolygon => $_), @{$self->expolygon->offset_ex(@_)} ];
|
2013-03-16 17:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub simplify {
|
|
|
|
my $self = shift;
|
2013-03-29 18:18:06 +00:00
|
|
|
return map $self->clone(expolygon => $_), $self->expolygon->simplify(@_);
|
2012-02-10 13:42:54 +00:00
|
|
|
}
|
|
|
|
|
2011-09-25 20:11:56 +00:00
|
|
|
sub p {
|
2012-01-12 21:05:35 +00:00
|
|
|
my $self = shift;
|
2013-08-26 21:03:00 +00:00
|
|
|
return @{$self->polygons};
|
2011-09-05 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
2013-02-23 20:39:13 +00:00
|
|
|
sub is_solid {
|
|
|
|
my $self = shift;
|
|
|
|
my $type = $self->surface_type;
|
2013-02-27 00:30:32 +00:00
|
|
|
# S_TYPE_INTERNALBRIDGE is not solid because we can't merge it with other solid types
|
2013-02-23 20:39:13 +00:00
|
|
|
return $type == S_TYPE_TOP
|
|
|
|
|| $type == S_TYPE_BOTTOM
|
2013-02-27 00:30:32 +00:00
|
|
|
|| $type == S_TYPE_INTERNALSOLID;
|
2013-02-23 20:39:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub is_bridge {
|
|
|
|
my $self = shift;
|
|
|
|
my $type = $self->surface_type;
|
|
|
|
return $type == S_TYPE_BOTTOM
|
|
|
|
|| $type == S_TYPE_INTERNALBRIDGE;
|
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|