mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
New --top-solid-infill-speed option. Also, --solid-infill-speed and --small-perimeter-speed can be expressed as ratios too. #174 #151
This commit is contained in:
parent
2ccb443c2f
commit
fbfbfac2b6
8 changed files with 59 additions and 33 deletions
|
@ -4,7 +4,8 @@ use Moo;
|
|||
require Exporter;
|
||||
our @ISA = qw(Exporter);
|
||||
our @EXPORT_OK = qw(EXTR_ROLE_PERIMETER EXTR_ROLE_SMALLPERIMETER EXTR_ROLE_CONTOUR_INTERNAL_PERIMETER
|
||||
EXTR_ROLE_FILL EXTR_ROLE_SOLIDFILL EXTR_ROLE_BRIDGE EXTR_ROLE_SKIRT EXTR_ROLE_SUPPORTMATERIAL);
|
||||
EXTR_ROLE_FILL EXTR_ROLE_SOLIDFILL EXTR_ROLE_TOPSOLIDFILL EXTR_ROLE_BRIDGE EXTR_ROLE_SKIRT
|
||||
EXTR_ROLE_SUPPORTMATERIAL);
|
||||
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
|
||||
|
||||
use Slic3r::Geometry qw(PI X Y epsilon deg2rad rotate_points);
|
||||
|
@ -28,9 +29,10 @@ use constant EXTR_ROLE_SMALLPERIMETER => 1;
|
|||
use constant EXTR_ROLE_CONTOUR_INTERNAL_PERIMETER => 2;
|
||||
use constant EXTR_ROLE_FILL => 3;
|
||||
use constant EXTR_ROLE_SOLIDFILL => 4;
|
||||
use constant EXTR_ROLE_BRIDGE => 5;
|
||||
use constant EXTR_ROLE_SKIRT => 6;
|
||||
use constant EXTR_ROLE_SUPPORTMATERIAL => 7;
|
||||
use constant EXTR_ROLE_TOPSOLIDFILL => 5;
|
||||
use constant EXTR_ROLE_BRIDGE => 6;
|
||||
use constant EXTR_ROLE_SKIRT => 7;
|
||||
use constant EXTR_ROLE_SUPPORTMATERIAL => 8;
|
||||
|
||||
sub BUILD {
|
||||
my $self = shift;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue