123456789101112131415161718192021222324 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitToJBim.MBI
- {
-
-
-
- class MBIConst
- {
-
- public static readonly double SpacePerimeterTolerance = Math.Pow(0.4 * 1000 / 304.8, 2) / 1;
-
- public static readonly double SpaceAreaTolerance = (0.4 * 1000 / 304.8 * 4) / 1;
- }
- }
|