Tweak point and rect precision constants. Makes mwm 25% less. Breaks data format.

Alex promised to test performance :)
This commit is contained in:
Yury Melnichek 2011-04-12 20:59:46 +02:00 committed by Alex Zolotarev
parent 564e3460df
commit 9422f45143
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View file

@ -9,7 +9,7 @@
#include "../base/start_mem_debug.hpp"
#define POINT_COORD_BITS 30
#define POINT_COORD_BITS 27
m2::PointU PointD2PointU(CoordT x, CoordT y)

View file

@ -9,7 +9,7 @@
typedef double CoordT;
typedef pair<CoordT, CoordT> CoordPointT;
typedef m2::CellId<19> RectId;
typedef m2::CellId<17> RectId;
m2::PointU PointD2PointU(CoordT x, CoordT y);
CoordPointT PointU2PointD(m2::PointU const & p);