Browse Source

mxg:消减因子设置为1

mengxiangge 5 years ago
parent
commit
880ed50e4f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MBI/SAGA.MBI/Common/MBIConst.cs

+ 2 - 2
MBI/SAGA.MBI/Common/MBIConst.cs

@@ -21,9 +21,9 @@ namespace SAGA.MBI.Common
     public class MBIConst
     {
         //最少空间的面积. 0.4m  削减因子: 1
-        public static readonly double SpacePerimeterTolerance = Math.Pow(0.4 * 1000 / 304.8, 2) / 100;
+        public static readonly double SpacePerimeterTolerance = Math.Pow(0.4 * 1000 / 304.8, 2) / 1;
         //最小空间的周长. 0.4m  削减因子: 1
-        public static readonly double SpaceAreaTolerance = (0.4 * 1000 / 304.8 * 4) / 100;
+        public static readonly double SpaceAreaTolerance = (0.4 * 1000 / 304.8 * 4) / 1;
 
         public static readonly string ManageCur = "ManageCurLocalize.json";
         public static readonly string MBIAssistDBName = "MBIAssistData.db";