mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
Rename some admesh functions to preserve compatibility with oiriginal admesh #1525
This commit is contained in:
parent
d29e341a8b
commit
aad41ee023
3 changed files with 7 additions and 7 deletions
|
@ -139,12 +139,12 @@ void TriangleMesh::scale(std::vector<double> versor)
|
|||
fversor[0] = versor[0];
|
||||
fversor[1] = versor[1];
|
||||
fversor[2] = versor[2];
|
||||
stl_scale(&this->stl, fversor);
|
||||
stl_scale_versor(&this->stl, fversor);
|
||||
}
|
||||
|
||||
void TriangleMesh::translate(float x, float y, float z)
|
||||
{
|
||||
stl_translate(&(this->stl), x, y, z);
|
||||
stl_translate_relative(&(this->stl), x, y, z);
|
||||
}
|
||||
|
||||
void TriangleMesh::align_to_origin()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue