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:
authorbubnikv <bubnikv@gmail.com>2016-11-08 00:49:11 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-08 00:49:11 +0300
commit5a8173157727495a3ef849a338c7b26a5e618f35 (patch)
tree1d415a905e35877c4632965fcc2aa87f5006f8c6 /xs/src/libslic3r/BoundingBox.hpp
parentaac968162b7636415640332f2225b637d58ae2d4 (diff)
Implemented utility functions to operate over lines, polylines, polygons,
surfaces.
Diffstat (limited to 'xs/src/libslic3r/BoundingBox.hpp')
-rw-r--r--xs/src/libslic3r/BoundingBox.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/xs/src/libslic3r/BoundingBox.hpp b/xs/src/libslic3r/BoundingBox.hpp
index ac52129e1..5f676151c 100644
--- a/xs/src/libslic3r/BoundingBox.hpp
+++ b/xs/src/libslic3r/BoundingBox.hpp
@@ -70,6 +70,8 @@ class BoundingBox : public BoundingBoxBase<Point>
BoundingBox(const Point &pmin, const Point &pmax) : BoundingBoxBase<Point>(pmin, pmax) {};
BoundingBox(const Points &points) : BoundingBoxBase<Point>(points) {};
BoundingBox(const Lines &lines);
+
+ friend BoundingBox get_extents_rotated(const Points &points, double angle);
};
/*