mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 15:13:58 -06:00
New --fill-every-layers option to get high accuracy on external surfaces while speeding up infill
This commit is contained in:
parent
54cc6216a1
commit
7f341cfcd3
16 changed files with 177 additions and 43 deletions
|
@ -22,10 +22,10 @@ sub id {
|
|||
|
||||
sub cast {
|
||||
my $class = shift;
|
||||
my ($points) = @_;
|
||||
my ($points, %args) = @_;
|
||||
|
||||
$points = [ map { ref $_ eq 'ARRAY' ? Slic3r::Point->new($_) : $_ } @$points ];
|
||||
return $class->new(points => $points);
|
||||
return $class->new(points => $points, %args);
|
||||
}
|
||||
|
||||
sub lines {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue