2011-10-10 15:27:00 +00:00
|
|
|
package Slic3r::Geometry::Clipper;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
our @ISA = qw(Exporter);
|
2017-07-19 08:45:39 +00:00
|
|
|
our @EXPORT_OK = qw(
|
2021-05-06 12:29:20 +00:00
|
|
|
offset
|
2022-04-28 13:59:13 +00:00
|
|
|
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;
|