Browse Source

mxg:消减因子设置为1

mengxiangge 5 years ago
parent
commit
6cd90b8779
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Executer/DataExport/RevitToJBim/MBI/MBIConst.cs

+ 2 - 2
Executer/DataExport/RevitToJBim/MBI/MBIConst.cs

@@ -17,8 +17,8 @@ namespace RevitToJBim.MBI
     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;
     }
 }