From 36e1f9f134502397d702baf1d90d693cc6a1ed09 Mon Sep 17 00:00:00 2001 From: srowen Date: Fri, 9 Nov 2007 22:51:09 +0000 Subject: [PATCH] Tiny tweak git-svn-id: http://zxing.googlecode.com/svn/trunk@24 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- .../zxing/qrcode/detector/DefaultGridSampler.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/com/google/zxing/qrcode/detector/DefaultGridSampler.java b/core/src/com/google/zxing/qrcode/detector/DefaultGridSampler.java index 5223d7f1..501cb609 100644 --- a/core/src/com/google/zxing/qrcode/detector/DefaultGridSampler.java +++ b/core/src/com/google/zxing/qrcode/detector/DefaultGridSampler.java @@ -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]; -- 2.20.1