mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
| package Slic3r::Polyline;
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| 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);
 | |
| use Storable qw();
 | |
| 
 | |
| 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 {
 | |
|     my $self = shift;
 | |
|     polyline_remove_parallel_continuous_edges($self);
 | |
| }
 | |
| 
 | |
| sub remove_acute_vertices {
 | |
|     my $self = shift;
 | |
|     polyline_remove_acute_vertices($self);
 | |
| }
 | |
| 
 | |
| sub simplify {
 | |
|     my $self = shift;
 | |
|     my $tolerance = shift || 10;
 | |
|     
 | |
|     my $simplified = Boost::Geometry::Utils::linestring_simplify($self->pp, $tolerance);
 | |
|     return __PACKAGE__->new(@$simplified);
 | |
| }
 | |
| 
 | |
| sub grow {
 | |
|     my $self = shift;
 | |
|     my ($distance, $scale, $joinType, $miterLimit) = @_;
 | |
|     $joinType   //= JT_SQUARE;  # we override this one
 | |
|     $scale      //= 100000;     # we init these because we can't pass undef
 | |
|     $miterLimit //= 3;
 | |
|     
 | |
|     my @points = @$self;
 | |
|     return @{Slic3r::Geometry::Clipper::offset(
 | |
|         [ Slic3r::Polygon->new(@points, CORE::reverse @points[1..($#points-1)]) ],
 | |
|         $distance, $scale, $joinType, $miterLimit,
 | |
|     )};
 | |
| }
 | |
| 
 | |
| 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;
 | |
|     return [ Slic3r::Geometry::size_2D($self) ];
 | |
| }
 | |
| 
 | |
| sub align_to_origin {
 | |
|     my $self = shift;
 | |
|     my $bb = $self->bounding_box;
 | |
|     return $self->translate(-$bb->x_min, -$bb->y_min);
 | |
| }
 | |
| 
 | |
| 1;
 | 
