2011-10-10 17:27:00 +02:00
|
|
|
package Slic3r::Geometry::Clipper;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
our @ISA = qw(Exporter);
|
2017-07-19 10:45:39 +02:00
|
|
|
our @EXPORT_OK = qw(
|
2021-05-06 14:29:20 +02:00
|
|
|
offset
|
2022-04-28 15:59:13 +02:00
|
|
|
offset2_ex
|
2022-04-28 17:02:33 +02:00
|
|
|
diff_ex diff union_ex
|
|
|
|
union);
|
2013-05-11 09:24:48 +02:00
|
|
|
|
2011-10-10 17:27:00 +02:00
|
|
|
1;
|