/* ==============================================================================
* 功能描述:MBIConst
* 创 建 者:Garrett
* 创建日期:2018/3/13 19:31:08
* ==============================================================================*/
using System;
using System.IO;
using SAGA.DotNetUtils;
namespace ServiceRevitLib.Common
{
///
/// MBIConst
///
public class MBIConst
{
public static readonly string MBIResourcePath = Path.Combine(AppBaseInfo.DllRunPath, "MBIResource");
///
/// 设备本地编码
///
public readonly static string EquipLocalID = "设备本地编码";
///
/// 设备本地名称
///
public readonly static string EquipLocalName = "设备本地名称";
///
/// 立管开始标志[start]
///
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;
}
}