2016-09-13 09:24:55 +00:00
|
|
|
# Wraps C++ enums Slic3r::PrintStep and Slic3r::PrintObjectStep
|
2013-12-19 17:54:24 +00:00
|
|
|
package Slic3r::Print::State;
|
2013-12-20 00:36:42 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2013-12-19 17:54:24 +00:00
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
our @ISA = qw(Exporter);
|
2015-03-06 08:56:58 +00:00
|
|
|
our @EXPORT_OK = qw(STEP_SLICE STEP_PERIMETERS STEP_PREPARE_INFILL
|
2013-12-19 17:54:24 +00:00
|
|
|
STEP_INFILL STEP_SUPPORTMATERIAL STEP_SKIRT STEP_BRIM);
|
|
|
|
our %EXPORT_TAGS = (steps => \@EXPORT_OK);
|
|
|
|
|
|
|
|
1;
|