mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 04:37:52 -06:00
Ported toolpaths rendering to C++
This commit is contained in:
parent
bfbcbd55d8
commit
2bbb6c570b
6 changed files with 312 additions and 197 deletions
|
@ -48,6 +48,15 @@ class Line
|
|||
#endif
|
||||
};
|
||||
|
||||
class Linef
|
||||
{
|
||||
public:
|
||||
Pointf a;
|
||||
Pointf b;
|
||||
Linef() {};
|
||||
explicit Linef(Pointf _a, Pointf _b): a(_a), b(_b) {};
|
||||
};
|
||||
|
||||
class Linef3
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue