Change PointD <--> PointU conversion such that there are no points on RectId corners, except on the border of the world.

Conflicts:

	indexer/point_to_int64.cpp
This commit is contained in:
Yury Melnichek 2011-04-23 13:40:45 +02:00 committed by Alex Zolotarev
parent 8930c40023
commit f30fafacea

View file

@ -14,7 +14,7 @@
namespace
{
inline double CoordSize(uint32_t coordBits) { return (1 << coordBits); }
inline double CoordSize(uint32_t coordBits) { return (1 << coordBits) - 1; }
}