1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-08-01 11:25:50 +00:00

Ported toolpaths rendering to C++

This commit is contained in:
Alessandro Ranellucci
2015-01-18 00:36:21 +01:00
parent bfbcbd55d8
commit 2bbb6c570b
6 changed files with 312 additions and 197 deletions
+9
View File
@@ -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: