mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			994 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			994 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| package Slic3r::Polyline::Closed;
 | |
| use Moo;
 | |
| 
 | |
| extends 'Slic3r::Polyline';
 | |
| 
 | |
| sub lines {
 | |
|     my $self = shift;
 | |
|     my @lines = $self->SUPER::lines(@_);
 | |
|     
 | |
|     # since this is a closed polyline, we just add a line at the end,
 | |
|     # connecting the last and the first point
 | |
|     push @lines, Slic3r::Line->new(points => [$self->points->[-1], $self->points->[0]]);
 | |
|     return @lines;
 | |
| }
 | |
| 
 | |
| # superclass doesn't check whether last line of our closed polyline
 | |
| # is parallel to first one, so let's do it here
 | |
| sub merge_continuous_lines {
 | |
|     my $self = shift;
 | |
|     $self->SUPER::merge_continuous_lines(@_);
 | |
|     
 | |
|     my @lines = $self->lines;
 | |
|     if ($lines[-1]->parallel_to($lines[0])) {
 | |
|         shift @{$self->points};
 | |
|     }
 | |
| }
 | |
| 
 | |
| sub encloses_point {
 | |
|     my $self = shift;
 | |
|     my ($point) = @_;
 | |
|     
 | |
|     return Slic3r::Geometry::point_in_polygon($point->p, $self->p);
 | |
| }
 | |
| 
 | |
| sub mgp_polygon {
 | |
|     my $self = shift;
 | |
|     
 | |
|     my $p = Math::Geometry::Planar->new;
 | |
|     $p->points($self->points);
 | |
|     return $p;
 | |
| }
 | |
| 
 | |
| 1;
 | 
