Fix of #1782
This commit is contained in:
parent
7c59c218c1
commit
21a7fa6af2
3 changed files with 24 additions and 23 deletions
src/libslic3r
|
@ -1333,6 +1333,8 @@ void Transformation::set_rotation(const Vec3d& rotation)
|
|||
void Transformation::set_rotation(Axis axis, double rotation)
|
||||
{
|
||||
rotation = angle_to_0_2PI(rotation);
|
||||
if (is_approx(std::abs(rotation), 2.0 * (double)PI))
|
||||
rotation = 0.0;
|
||||
|
||||
if (m_rotation(axis) != rotation)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue