Removed unused methods

This commit is contained in:
Enrico Turri 2018-08-28 15:19:53 +02:00
parent 055e90602e
commit cfe49a20ad
4 changed files with 0 additions and 26 deletions

View file

@ -743,21 +743,6 @@ void ModelObject::rotate(float angle, const Vec3d& axis)
this->invalidate_bounding_box();
}
void ModelObject::transform(const float* matrix3x4)
{
if (matrix3x4 == nullptr)
return;
for (ModelVolume* v : volumes)
{
v->mesh.transform(matrix3x4);
v->m_convex_hull.transform(matrix3x4);
}
this->origin_translation = Vec3d::Zero();
this->invalidate_bounding_box();
}
void ModelObject::mirror(const Axis &axis)
{
for (ModelVolume *v : this->volumes)