Incomplete work for porting translate()

This commit is contained in:
Alessandro Ranellucci 2013-08-05 10:48:38 +02:00
parent 515d5707c9
commit 04d5d1bb9b
7 changed files with 36 additions and 10 deletions

View file

@ -107,4 +107,9 @@ void TriangleMesh::scale(float factor)
stl_scale(&(this->stl), factor);
}
void TriangleMesh::translate(float x, float y, float z)
{
stl_translate(&(this->stl), x, y, z);
}
}