SLA gizmo improvements

- point can be selected
- selection can be deleted, head diameter changed
- dragging of objects is not allowed with the gizmo being on
- added a modal dialog when automatic support generator is triggered
This commit is contained in:
Lukas Matena 2019-02-11 16:29:03 +01:00
parent 0453caf266
commit ac8f9ab3dc
5 changed files with 195 additions and 140 deletions

View file

@ -253,7 +253,7 @@ void SLAAutoSupports::uniformly_cover(const ExPolygon& island, Structure& struct
}
for (const Vec3d& p : island_new_points) {
m_output.emplace_back(float(p(0)), float(p(1)), structure.height, 0.4f, is_new_island);
m_output.emplace_back(float(p(0)), float(p(1)), structure.height, 0.2f, is_new_island);
structure.supports_force += m_config.support_force;
}
}