Set fixed point to 2^16

master
Marius Kintel 2014-06-26 15:32:52 -04:00
parent f108798c00
commit 1085d3507a
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
namespace ClipperUtils {
static const unsigned int CLIPPER_SCALE = 2 << 17;
static const unsigned int CLIPPER_SCALE = 1 << 16;
ClipperLib::Path fromOutline2d(const Outline2d &poly, bool keep_orientation);
ClipperLib::Paths fromPolygon2d(const Polygon2d &poly);