mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-18 11:02:08 +00:00
New --fill-every-layers option to get high accuracy on external surfaces while speeding up infill
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user