Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-12-01 23:57:38 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-12-01 23:57:38 +0400
commitf7a9c9be63b2cadaebaac47ccbd3477bdd680430 (patch)
treeb72afa8bd5fb583227e40c105042a526ad7fbd22 /lib/Slic3r/Geometry
parent133f3a0495ed293c8dfbfbd61347921711fa28b5 (diff)
Bugfix: sometimes holes were detected as contours
Diffstat (limited to 'lib/Slic3r/Geometry')
-rw-r--r--lib/Slic3r/Geometry/Clipper.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Slic3r/Geometry/Clipper.pm b/lib/Slic3r/Geometry/Clipper.pm
index c88500c91..8cb0069fe 100644
--- a/lib/Slic3r/Geometry/Clipper.pm
+++ b/lib/Slic3r/Geometry/Clipper.pm
@@ -5,7 +5,8 @@ use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(explode_expolygon explode_expolygons safety_offset offset
- diff_ex diff union_ex intersection_ex PFT_EVENODD JT_MITER JT_ROUND);
+ diff_ex diff union_ex intersection_ex PFT_EVENODD JT_MITER JT_ROUND
+ is_counter_clockwise);
use Math::Clipper 1.02 ':all';
our $clipper = Math::Clipper->new;