Skip to content

Commit 2bf0b2e

Browse files
committedMay 29, 2013
Differentiate between x and y resolution for polygon coordinate positions -> fewer candidate positions
1 parent 95b4567 commit 2bf0b2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/core/pal/feature.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,10 @@ namespace pal
11031103
j++;
11041104
}
11051105

1106-
dx = dy = min( yrm, xrm ) / 2;
1106+
//dx = dy = min( yrm, xrm ) / 2;
1107+
dx = xrm / 2.0;
1108+
dy = yrm / 2.0;
1109+
11071110

11081111
int num_try = 0;
11091112
int max_try = 10;

0 commit comments

Comments
 (0)
Please sign in to comment.