mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 20:28:08 -06:00
Implemented rotation of the support structure.
This commit is contained in:
parent
27003dc0fd
commit
f9f0940297
5 changed files with 52 additions and 29 deletions
|
@ -26,7 +26,8 @@ public:
|
|||
void scale(double factor);
|
||||
void translate(double x, double y);
|
||||
void translate(const Point &vector);
|
||||
void rotate(double angle);
|
||||
void rotate(double angle) { this->rotate(cos(angle), sin(angle)); }
|
||||
void rotate(double cos_angle, double sin_angle);
|
||||
void rotate(double angle, const Point ¢er);
|
||||
void reverse();
|
||||
Point first_point() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue