lixiaojun
2024-07-12 315fce49a23eef331fb70e64d24cbf9d6c2d4fca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace HStation.Model
{
    /// <summary>
    /// 节点
    /// </summary>
    public interface IRevitNode : IRevitParter
    {
        /// <summary>
        /// 标高
        /// </summary>
        double Elev { get; set; }
 
        /// <summary>
        /// X坐标
        /// </summary>
        public double X { get; set; }
 
        /// <summary>
        /// Y坐标
        /// </summary>
        public double Y { get; set; }
 
        /// <summary>
        /// Z坐标
        /// </summary>
        public double Z { get; set; }
 
    }
}