mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
13
lib/Slic3r/Polygon.pm
Normal file
13
lib/Slic3r/Polygon.pm
Normal file
@@ -0,0 +1,13 @@
|
||||
package Slic3r::Polygon;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
# a polygon is a closed polyline.
|
||||
use parent 'Slic3r::Polyline';
|
||||
|
||||
sub grow {
|
||||
my $self = shift;
|
||||
return $self->split_at_first_point->grow(@_);
|
||||
}
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user