12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* ==============================================================================
- * 功能描述:MBIConst
- * 创 建 者:Garrett
- * 创建日期:2018/3/13 19:31:08
- * ==============================================================================*/
- using System;
- using System.IO;
- using SAGA.DotNetUtils;
- namespace ServiceRevitLib.Common
- {
- /// <summary>
- /// MBIConst
- /// </summary>
- public class MBIConst
- {
-
- public static readonly string MBIResourcePath = Path.Combine(AppBaseInfo.DllRunPath, "MBIResource");
- /// <summary>
- /// 设备本地编码
- /// </summary>
- public readonly static string EquipLocalID = "设备本地编码";
- /// <summary>
- /// 设备本地名称
- /// </summary>
- public readonly static string EquipLocalName = "设备本地名称";
- /// <summary>
- /// 立管开始标志[start]
- /// </summary>
- public static string StartFlag { get; private set; } = "start";
- //最少空间的面积. 0.4m 削减因子: 1
- public static readonly double SpacePerimeterTolerance = Math.Pow(0.4 * 1000 / 304.8, 2) / 100;
- //最小空间的周长. 0.4m 削减因子: 1
- public static readonly double SpaceAreaTolerance = (0.4 * 1000 / 304.8 * 4) / 100;
- }
- }
|