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

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: