mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
12 lines
215 B
Perl
12 lines
215 B
Perl
package Slic3r::ExtrusionLoop;
|
|
use strict;
|
|
use warnings;
|
|
|
|
use parent qw(Exporter);
|
|
|
|
our @EXPORT_OK = qw(EXTRL_ROLE_DEFAULT
|
|
EXTRL_ROLE_CONTOUR_INTERNAL_PERIMETER);
|
|
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
|
|
|
|
|
|
1;
|