mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-03 03:54:04 -06:00
Merge branch 'master' of https://github.com/prusa3d/Slic3r
This commit is contained in:
commit
b65d5683e2
3 changed files with 10 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
min_slic3r_version = 1.42.0-alpha6
|
min_slic3r_version = 1.42.0-alpha6
|
||||||
|
0.8.0 Updated for the PrusaSlicer 2.0.0 final release
|
||||||
0.8.0-rc2 Updated firmware versions for MK2.5/S and MK3/S
|
0.8.0-rc2 Updated firmware versions for MK2.5/S and MK3/S
|
||||||
0.8.0-rc1 Updated SLA profiles
|
0.8.0-rc1 Updated SLA profiles
|
||||||
0.8.0-rc Updated for the PrusaSlicer 2.0.0-rc release
|
0.8.0-rc Updated for the PrusaSlicer 2.0.0-rc release
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
name = Prusa Research
|
name = Prusa Research
|
||||||
# Configuration version of this file. Config file will only be installed, if the config_version differs.
|
# Configuration version of this file. Config file will only be installed, if the config_version differs.
|
||||||
# This means, the server may force the Slic3r configuration to be downgraded.
|
# This means, the server may force the Slic3r configuration to be downgraded.
|
||||||
config_version = 0.8.0-rc2
|
config_version = 0.8.0
|
||||||
# Where to get the updates from?
|
# Where to get the updates from?
|
||||||
config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/PrusaResearch/
|
config_update_url = http://files.prusa3d.com/wp-content/uploads/repository/PrusaSlicer-settings-master/live/PrusaResearch/
|
||||||
changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1%
|
changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1%
|
||||||
|
|
|
@ -303,6 +303,9 @@ void GLGizmoSlaSupports::render_points(const Selection& selection, bool picking)
|
||||||
glsafe(::glTranslated(support_point.pos(0), support_point.pos(1), support_point.pos(2)));
|
glsafe(::glTranslated(support_point.pos(0), support_point.pos(1), support_point.pos(2)));
|
||||||
glsafe(::glMultMatrixd(instance_scaling_matrix_inverse.data()));
|
glsafe(::glMultMatrixd(instance_scaling_matrix_inverse.data()));
|
||||||
|
|
||||||
|
if (vol->is_left_handed())
|
||||||
|
glFrontFace(GL_CW);
|
||||||
|
|
||||||
// Matrices set, we can render the point mark now.
|
// Matrices set, we can render the point mark now.
|
||||||
// If in editing mode, we'll also render a cone pointing to the sphere.
|
// If in editing mode, we'll also render a cone pointing to the sphere.
|
||||||
if (m_editing_mode) {
|
if (m_editing_mode) {
|
||||||
|
@ -324,6 +327,9 @@ void GLGizmoSlaSupports::render_points(const Selection& selection, bool picking)
|
||||||
glsafe(::glPopMatrix());
|
glsafe(::glPopMatrix());
|
||||||
}
|
}
|
||||||
::gluSphere(m_quadric, m_editing_mode_cache[i].support_point.head_front_radius * RenderPointScale, 24, 12);
|
::gluSphere(m_quadric, m_editing_mode_cache[i].support_point.head_front_radius * RenderPointScale, 24, 12);
|
||||||
|
if (vol->is_left_handed())
|
||||||
|
glFrontFace(GL_CCW);
|
||||||
|
|
||||||
glsafe(::glPopMatrix());
|
glsafe(::glPopMatrix());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue