Clipper.pm 377 B

12345678910111213
  1. package Slic3r::Geometry::Clipper;
  2. use strict;
  3. use warnings;
  4. require Exporter;
  5. our @ISA = qw(Exporter);
  6. our @EXPORT_OK = qw(offset offset_ex
  7. diff_ex diff union_ex intersection_ex JT_ROUND JT_MITER
  8. JT_SQUARE is_counter_clockwise union_pt offset2 offset2_ex
  9. intersection intersection_pl diff_pl union CLIPPER_OFFSET_SCALE
  10. union_pt_chained intersection_ppl);
  11. 1;