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

« back to all changes in this revision

Viewing changes to lib/Slic3r/Geometry/Clipper.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::Geometry::Clipper;
 
2
use strict;
 
3
use warnings;
 
4
 
 
5
require Exporter;
 
6
our @ISA = qw(Exporter);
 
7
our @EXPORT_OK = qw(offset offset_ex
 
8
    diff_ex diff union_ex intersection_ex xor_ex JT_ROUND JT_MITER
 
9
    JT_SQUARE is_counter_clockwise union_pt offset2 offset2_ex
 
10
    intersection intersection_pl diff_pl union CLIPPER_OFFSET_SCALE
 
11
    union_pt_chained diff_ppl intersection_ppl);
 
12
 
 
13
1;