Tune simplify scales array.

This commit is contained in:
vng 2011-01-15 03:42:47 +02:00 committed by Alex Zolotarev
parent 2a69582cc7
commit 1603d4e013
2 changed files with 2 additions and 2 deletions

View file

@ -149,7 +149,7 @@ namespace feature
}
static int g_arrScales[] = { 5, 10, 14, 17 }; // 17 = scales::GetUpperScale()
static int g_arrScales[] = { 7, 10, 14, 17 }; // 17 = scales::GetUpperScale()
inline string GetTagForIndex(char const * prefix, int ind)
{

View file

@ -272,7 +272,7 @@ namespace feature
for (int i = m_scales-1; i >= 0; --i)
{
if (fb.IsDrawableInRange(i > 0 ? g_arrScales[i-1] : 0, g_arrScales[i]))
if (fb.IsDrawableInRange(i > 0 ? g_arrScales[i-1] + 1 : 0, g_arrScales[i]))
{
// simplify and serialize geometry
points_t points;