mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 19:28:14 -06:00
Ported mode Model methods to XS
This commit is contained in:
parent
dfce3a3138
commit
ed75219215
9 changed files with 86 additions and 125 deletions
|
@ -359,6 +359,12 @@ Pointf::translate(double x, double y)
|
|||
this->y += y;
|
||||
}
|
||||
|
||||
void
|
||||
Pointf::translate(const Vectorf &vector)
|
||||
{
|
||||
this->translate(vector.x, vector.y);
|
||||
}
|
||||
|
||||
void
|
||||
Pointf::rotate(double angle, const Pointf ¢er)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue