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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2020-01-29 14:31:50 +0300
committerEnrico Turri <enricoturri@seznam.cz>2020-01-29 14:31:50 +0300
commit504413cc91381d6d97d7948fe95ec5ab122978c0 (patch)
tree9943495e6a22d4c2e5dfe67b6c0b82312ea416c9 /src/slic3r/GUI/GLCanvas3D.cpp
parent9032dadff3d861abe141d05b6b3868c52556d43e (diff)
parentf7f1e2ce42a1b9d01657cd98ffbf71b034371d21 (diff)
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_labels
Diffstat (limited to 'src/slic3r/GUI/GLCanvas3D.cpp')
-rw-r--r--src/slic3r/GUI/GLCanvas3D.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp
index b8cd6a75b..8d02ba0b5 100644
--- a/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/src/slic3r/GUI/GLCanvas3D.cpp
@@ -1854,11 +1854,16 @@ void GLCanvas3D::render()
}
const Size& cnv_size = get_canvas_size();
+#if ENABLE_6DOF_CAMERA
+ m_camera.apply_viewport(0, 0, (unsigned int)cnv_size.get_width(), (unsigned int)cnv_size.get_height());
+#endif // ENABLE_6DOF_CAMERA
if (m_camera.requires_zoom_to_bed)
{
zoom_to_bed();
+#if !ENABLE_6DOF_CAMERA
_resize((unsigned int)cnv_size.get_width(), (unsigned int)cnv_size.get_height());
+#endif // !ENABLE_6DOF_CAMERA
m_camera.requires_zoom_to_bed = false;
}
@@ -3962,8 +3967,13 @@ void GLCanvas3D::_render_thumbnail_internal(ThumbnailData& thumbnail_data, bool
#if ENABLE_6DOF_CAMERA
camera.set_scene_box(scene_bounding_box());
#endif // ENABLE_6DOF_CAMERA
+#if ENABLE_6DOF_CAMERA
+ camera.apply_viewport(0, 0, thumbnail_data.width, thumbnail_data.height);
+ camera.zoom_to_volumes(visible_volumes);
+#else
camera.zoom_to_volumes(visible_volumes, thumbnail_data.width, thumbnail_data.height);
camera.apply_viewport(0, 0, thumbnail_data.width, thumbnail_data.height);
+#endif // ENABLE_6DOF_CAMERA
camera.apply_view_matrix();
double near_z = -1.0;
@@ -4554,8 +4564,10 @@ void GLCanvas3D::_resize(unsigned int w, unsigned int h)
// ensures that this canvas is current
_set_current();
+#if !ENABLE_6DOF_CAMERA
// updates camera
m_camera.apply_viewport(0, 0, w, h);
+#endif // !ENABLE_6DOF_CAMERA
}
BoundingBoxf3 GLCanvas3D::_max_bounding_box(bool include_gizmos, bool include_bed_model) const
@@ -4579,8 +4591,12 @@ BoundingBoxf3 GLCanvas3D::_max_bounding_box(bool include_gizmos, bool include_be
#if ENABLE_THUMBNAIL_GENERATOR
void GLCanvas3D::_zoom_to_box(const BoundingBoxf3& box, double margin_factor)
{
+#if ENABLE_6DOF_CAMERA
+ m_camera.zoom_to_box(box, margin_factor);
+#else
const Size& cnv_size = get_canvas_size();
m_camera.zoom_to_box(box, cnv_size.get_width(), cnv_size.get_height(), margin_factor);
+#endif // ENABLE_6DOF_CAMERA
m_dirty = true;
}
#else