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>2015-01-25 17:21:45 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-01-25 17:21:45 +0300
commitc264969962b28fc7656cfe332c479deaa41b97e0 (patch)
tree5b87a3db10c540c70888ac9c4f955fa8899e976c /xs/src/libslic3r/MultiPoint.hpp
parenta10a554e2a69227cc3e5bdb8179970c6fdf8a822 (diff)
Bugfix: crash when rendering lines with zero length in 3D preview. #2569
Diffstat (limited to 'xs/src/libslic3r/MultiPoint.hpp')
-rw-r--r--xs/src/libslic3r/MultiPoint.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/MultiPoint.hpp b/xs/src/libslic3r/MultiPoint.hpp
index e87c5166e..12c500836 100644
--- a/xs/src/libslic3r/MultiPoint.hpp
+++ b/xs/src/libslic3r/MultiPoint.hpp
@@ -32,6 +32,7 @@ class MultiPoint
int find_point(const Point &point) const;
bool has_boundary_point(const Point &point) const;
BoundingBox bounding_box() const;
+ void remove_duplicate_points();
static Points _douglas_peucker(const Points &points, const double tolerance);