2012-06-06 16:05:03 +00:00
|
|
|
package Slic3r::Flow;
|
2014-01-05 12:16:13 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2012-06-06 16:05:03 +00:00
|
|
|
|
2014-01-05 12:16:13 +00:00
|
|
|
use parent qw(Exporter);
|
2014-01-03 17:27:46 +00:00
|
|
|
|
2014-01-05 12:16:13 +00:00
|
|
|
our @EXPORT_OK = qw(FLOW_ROLE_PERIMETER FLOW_ROLE_INFILL FLOW_ROLE_SOLID_INFILL
|
|
|
|
FLOW_ROLE_TOP_SOLID_INFILL FLOW_ROLE_SUPPORT_MATERIAL
|
|
|
|
FLOW_ROLE_SUPPORT_MATERIAL_INTERFACE);
|
|
|
|
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
|
2012-09-23 01:03:08 +00:00
|
|
|
|
2012-06-06 16:05:03 +00:00
|
|
|
1;
|