More work for XS Config

This commit is contained in:
Alessandro Ranellucci
2013-12-20 20:54:11 +01:00
parent 008f38cf68
commit 64e549a46f
7 changed files with 316 additions and 10 deletions

View File

@@ -42,6 +42,19 @@ class Point
#endif
};
class Pointf
{
public:
float x;
float y;
explicit Pointf(float _x = 0, float _y = 0): x(_x), y(_y) {};
#ifdef SLIC3RXS
void from_SV(SV* point_sv);
SV* to_SV_pureperl() const;
#endif
};
}
#endif