Files
OrcaSlicer-bambulab/lib/Slic3r/Polyline.pm
T

84 lines
2.1 KiB
Perl
Raw Normal View History

2011-09-01 21:06:28 +02:00
package Slic3r::Polyline;
use strict;
use warnings;
2011-09-01 21:06:28 +02:00
use Slic3r::Geometry qw(A B X Y X1 X2 Y1 Y2 polyline_remove_parallel_continuous_edges polyline_remove_acute_vertices);
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
2013-07-05 14:46:32 +02:00
use Storable qw();
2013-07-16 17:13:01 +02:00
sub new_scale {
my $class = shift;
my @points = map { ref($_) eq 'Slic3r::Point' ? $_->pp : $_ } @_;
return $class->new(map [ Slic3r::Geometry::scale($_->[X]), Slic3r::Geometry::scale($_->[Y]) ], @points);
}
sub wkt {
my $self = shift;
return sprintf "LINESTRING((%s))", join ',', map "$_->[0] $_->[1]", @$self;
}
sub merge_continuous_lines {
2011-09-02 21:10:20 +02:00
my $self = shift;
polyline_remove_parallel_continuous_edges($self);
2011-10-09 22:18:06 +02:00
}
sub remove_acute_vertices {
my $self = shift;
polyline_remove_acute_vertices($self);
}
sub simplify {
2011-09-30 15:46:48 +02:00
my $self = shift;
2011-10-09 19:47:21 +02:00
my $tolerance = shift || 10;
my $simplified = Boost::Geometry::Utils::linestring_simplify($self->pp, $tolerance);
return __PACKAGE__->new(@$simplified);
2011-09-30 15:46:48 +02:00
}
sub grow {
my $self = shift;
my ($distance, $scale, $joinType, $miterLimit) = @_;
2013-08-08 02:10:34 +02:00
$joinType //= JT_SQUARE; # we override this one
$scale //= 100000; # we init these because we can't pass undef
$miterLimit //= 3;
2013-07-16 17:13:01 +02:00
my @points = @$self;
2013-08-08 02:10:34 +02:00
return @{Slic3r::Geometry::Clipper::offset(
[ Slic3r::Polygon->new(@points, CORE::reverse @points[1..($#points-1)]) ],
$distance, $scale, $joinType, $miterLimit,
)};
}
2011-11-14 10:54:04 +01:00
sub clip_with_polygon {
my $self = shift;
my ($polygon) = @_;
return $self->clip_with_expolygon(Slic3r::ExPolygon->new($polygon));
}
sub clip_with_expolygon {
my $self = shift;
my ($expolygon) = @_;
my $result = Boost::Geometry::Utils::polygon_multi_linestring_intersection($expolygon->pp, [$self->pp]);
return map { __PACKAGE__->new(@$_) } @$result;
}
sub bounding_box {
my $self = shift;
return Slic3r::Geometry::BoundingBox->new_from_points($self);
}
sub size {
my $self = shift;
2012-11-19 17:39:16 +01:00
return [ Slic3r::Geometry::size_2D($self) ];
2012-09-12 16:30:44 +02:00
}
sub align_to_origin {
my $self = shift;
my $bb = $self->bounding_box;
return $self->translate(-$bb->x_min, -$bb->y_min);
}
2011-09-01 21:06:28 +02:00
1;