Remove old C# port before committing new one
[zxing.git] / csharp / qrcode / detector / FinderPattern.cs
diff --git a/csharp/qrcode/detector/FinderPattern.cs b/csharp/qrcode/detector/FinderPattern.cs
deleted file mode 100755 (executable)
index 601bcfb..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-/*\r
-* Copyright 2007 ZXing authors\r
-*\r
-* Licensed under the Apache License, Version 2.0 (the "License");\r
-* you may not use this file except in compliance with the License.\r
-* You may obtain a copy of the License at\r
-*\r
-*      http://www.apache.org/licenses/LICENSE-2.0\r
-*\r
-* Unless required by applicable law or agreed to in writing, software\r
-* distributed under the License is distributed on an "AS IS" BASIS,\r
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-* See the License for the specific language governing permissions and\r
-* limitations under the License.\r
-*/\r
-using System;\r
-using com.google.zxing;\r
-using com.google.zxing.common;\r
-\r
-namespace com.google.zxing.qrcode.detector\r
-{\r
-    public sealed class FinderPattern : ResultPoint\r
-    { \r
-          private  float posX;\r
-          private  float posY;\r
-          private  float estimatedModuleSize;\r
-          private int count;\r
-\r
-          public FinderPattern(float posX, float posY, float estimatedModuleSize) {\r
-            this.posX = posX;\r
-            this.posY = posY;\r
-            this.estimatedModuleSize = estimatedModuleSize;\r
-            this.count = 1;\r
-          }\r
-\r
-          public float getX() {\r
-            return posX;\r
-          }\r
-\r
-          public float getY() {\r
-            return posY;\r
-          }\r
-\r
-          public float getEstimatedModuleSize()\r
-          {\r
-            return estimatedModuleSize;\r
-          }\r
-\r
-          public int getCount()\r
-          {\r
-            return count;\r
-          }\r
-\r
-          public void incrementCount()\r
-          {\r
-            this.count++;\r
-          }\r
-\r
-          /**\r
-           * <p>Determines if this finder pattern "about equals" a finder pattern at the stated\r
-           * position and size -- meaning, it is at nearly the same center with nearly the same size.</p>\r
-           */\r
-          public bool aboutEquals(float moduleSize, float i, float j) {\r
-            return Math.Abs(i - posY) <= moduleSize &&\r
-                Math.Abs(j - posX) <= moduleSize &&\r
-                (Math.Abs(moduleSize - estimatedModuleSize) <= 1.0f ||\r
-                    Math.Abs(moduleSize - estimatedModuleSize) / estimatedModuleSize <= 0.1f);\r
-          }\r
-    \r
-    }\r
-}
\ No newline at end of file