This commit is contained in:
Enrico Turri 2019-02-06 09:57:52 +01:00
parent 7c59c218c1
commit 21a7fa6af2
3 changed files with 24 additions and 23 deletions
src/libslic3r

View file

@ -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)
{