~ubuntu-branches/ubuntu/utopic/slic3r/utopic

« back to all changes in this revision

Viewing changes to lib/Slic3r/ExtrusionLoop.pm

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-06-17 01:27:26 UTC
  • Revision ID: package-import@ubuntu.com-20140617012726-2wrs4zdo251nr4vg
Tags: upstream-1.1.4+dfsg
ImportĀ upstreamĀ versionĀ 1.1.4+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Slic3r::ExtrusionLoop;
 
2
use strict;
 
3
use warnings;
 
4
 
 
5
use parent qw(Exporter);
 
6
 
 
7
our @EXPORT_OK = qw(EXTRL_ROLE_DEFAULT EXTRL_ROLE_EXTERNAL_PERIMETER
 
8
    EXTRL_ROLE_CONTOUR_INTERNAL_PERIMETER);
 
9
our %EXPORT_TAGS = (roles => \@EXPORT_OK);
 
10
 
 
11
 
 
12
1;