New class for generating SVG from XS. Includes some minor refactoring to TriangleMesh

This commit is contained in:
Alessandro Ranellucci 2013-10-13 15:59:38 +02:00
parent 9918c1e97d
commit ac93e15c98
5 changed files with 71 additions and 22 deletions

View file

@ -19,6 +19,8 @@ extern "C" {
#endif
#define EPSILON 1e-4
#define SCALING_FACTOR 0.000001
#define unscale(val) (val * SCALING_FACTOR)
namespace Slic3r {}
using namespace Slic3r;