mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Speed boost for new infill patterns. #20
This commit is contained in:
parent
86f3e4fcd2
commit
12b06b0ab0
2 changed files with 16 additions and 2 deletions
|
|
@ -118,6 +118,13 @@ sub has_segment {
|
|||
return 0;
|
||||
}
|
||||
|
||||
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) = @_;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue