Skip to content

Commit

Permalink
Differentiate between x and y resolution for polygon coordinate posit…
Browse files Browse the repository at this point in the history
…ions -> fewer candidate positions
  • Loading branch information
mhugent committed May 29, 2013
1 parent 95b4567 commit 2bf0b2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/pal/feature.cpp
Expand Up @@ -1103,7 +1103,10 @@ namespace pal
j++;
}

dx = dy = min( yrm, xrm ) / 2;
//dx = dy = min( yrm, xrm ) / 2;
dx = xrm / 2.0;
dy = yrm / 2.0;


int num_try = 0;
int max_try = 10;
Expand Down

0 comments on commit 2bf0b2e

Please sign in to comment.