PrusaSlicer-NonPlainar/lib/Slic3r/Geometry/Clipper.pm

14 lines
190 B
Perl
Raw Normal View History

2011-10-10 15:27:00 +00:00
package Slic3r::Geometry::Clipper;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(
offset
offset2_ex
2022-04-28 15:02:33 +00:00
diff_ex diff union_ex
union);
2013-05-11 07:24:48 +00:00
2011-10-10 15:27:00 +00:00
1;