using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.DB;
namespace uBIM_EarthTools
{
class GeologyParams
{
///
/// 放置位置
///
public XYZ Location { get; set; }
///
/// F面左距
///
public double FDistance { get; set; }
///
/// F面宽
///
public double FWidth { get; set; }
///
/// F面左边高
///
public double FLeftHeight { get; set; }
///
/// F面左底高
///
public double FLeftBottom { get; set; }
///
/// F面右边高
///
public double FRightHeight { get; set; }
///
/// F面右底高
///
public double FRightBottom { get; set; }
///
/// E面左距
///
public double EDistance { get; set; }
///
/// E面宽
///
public double EWidth { get; set; }
///
/// E面左边高
///
public double ELeftHeight { get; set; }
///
/// E面左底高
///
public double ELeftBottom { get; set; }
///
/// E面右边高
///
public double ERightHeight { get; set; }
///
/// E面右底高
///
public double ERightBottom { get; set; }
///
/// FE垂距
///
public double FEOffset { get; set; }
///
/// 偏移量
///
public double ElevationOffset { get; set; }
///
/// 旋转角度
///
public double Angle { get; set; }
///
/// 构造函数
///
public GeologyParams() { }
}
}