mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Only apply vibration limit to gaps fill while it's not very mature to work with long segments
This commit is contained in:
parent
fc399d60e2
commit
8ae96a8868
3 changed files with 9 additions and 3 deletions
|
@ -6,7 +6,7 @@ our @ISA = qw(Exporter);
|
|||
our @EXPORT_OK = qw(EXTR_ROLE_PERIMETER EXTR_ROLE_SMALLPERIMETER EXTR_ROLE_EXTERNAL_PERIMETER
|
||||
EXTR_ROLE_CONTOUR_INTERNAL_PERIMETER
|
||||
EXTR_ROLE_FILL EXTR_ROLE_SOLIDFILL EXTR_ROLE_TOPSOLIDFILL EXTR_ROLE_BRIDGE EXTR_ROLE_SKIRT
|
||||
EXTR_ROLE_SUPPORTMATERIAL);
|
||||
EXTR_ROLE_SUPPORTMATERIAL EXTR_ROLE_GAPFILL);
|
||||
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
|
||||
|
||||
use Slic3r::Geometry qw(PI X Y epsilon deg2rad rotate_points);
|
||||
|
@ -33,6 +33,7 @@ use constant EXTR_ROLE_TOPSOLIDFILL => 6;
|
|||
use constant EXTR_ROLE_BRIDGE => 7;
|
||||
use constant EXTR_ROLE_SKIRT => 8;
|
||||
use constant EXTR_ROLE_SUPPORTMATERIAL => 9;
|
||||
use constant EXTR_ROLE_GAPFILL => 10;
|
||||
|
||||
use constant PACK_FMT => 'ffca*';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue