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:
authorEnrico Turri <enricoturri@seznam.cz>2018-08-15 13:50:06 +0300
committerEnrico Turri <enricoturri@seznam.cz>2018-08-15 13:50:06 +0300
commit4d98d321996de6e6d036403c319b6ef044144dcd (patch)
treec46a910b2e397fc239e89fb18599a8e2234fdb21 /xs/src/slic3r/GUI/GLCanvas3D.cpp
parent211790f8c35a7f950fddb95839a7b1009470a6ac (diff)
Use of bounding box of rotated 3D convex hull for out of print volume detection
Diffstat (limited to 'xs/src/slic3r/GUI/GLCanvas3D.cpp')
-rw-r--r--xs/src/slic3r/GUI/GLCanvas3D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/slic3r/GUI/GLCanvas3D.cpp b/xs/src/slic3r/GUI/GLCanvas3D.cpp
index ab4095e6f..92bde34ce 100644
--- a/xs/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/xs/src/slic3r/GUI/GLCanvas3D.cpp
@@ -3243,7 +3243,7 @@ BoundingBoxf3 GLCanvas3D::_selected_volumes_bounding_box() const
{
for (const GLVolume* volume : selected_volumes)
{
- bb.merge(volume->transformed_bounding_box());
+ bb.merge(volume->transformed_convex_hull_bounding_box());
}
}