mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-04 02:44:02 +08:00
13 lines
215 B
Perl
13 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;
|