Tiny tweak
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Fri, 9 Nov 2007 22:51:09 +0000 (22:51 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Fri, 9 Nov 2007 22:51:09 +0000 (22:51 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@24 59b500cc-1b3d-0410-9834-0bbf25fbcc57

core/src/com/google/zxing/qrcode/detector/DefaultGridSampler.java

index 5223d7f..501cb60 100644 (file)
@@ -48,18 +48,18 @@ public final class DefaultGridSampler extends GridSampler {
         3.5f,
         dimMinusThree,
         3.5f,
-        3.5f,
-        dimMinusThree,
         dimMinusThree - 3.0f,
         dimMinusThree - 3.0f,
+        3.5f,
+        dimMinusThree,
         topLeft.getX(),
         topLeft.getY(),
         topRight.getX(),
         topRight.getY(),
-        bottomLeft.getX(),
-        bottomLeft.getY(),
         bottomRightX,
-        bottomRightY);
+        bottomRightY,
+        bottomLeft.getX(),
+        bottomLeft.getY());
 
     BitMatrix bits = new BitMatrix(dimension);
     float[] points = new float[dimension << 1];