using Autodesk.Revit.DB; namespace ShrlAlgo.RvKits.RvCivil { internal class Rotation { /// /// 旋转角度 /// public double Radian { get; set; } /// /// 对齐的轴 /// public Orientation Orientation { get; set; } /// /// 对齐边与轴角度最小的对齐边的方向 /// public XYZ Direction { get; set; } /// /// 对齐UV轴的方向 /// public XYZ CoordSystemAxis { get; set; } } public enum Orientation { U, V } }