| | |
| | | this.Diameter = rhs.Diameter; |
| | | this.MinVol = rhs.MinVol; |
| | | this.VolCurve = rhs.VolCurve; |
| | | this.X = rhs.X; |
| | | this.Y = rhs.Y; |
| | | this.Z = rhs.Z; |
| | | this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList(); |
| | | } |
| | | |
| | |
| | | public string VolCurve { 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; } |
| | | |
| | | /// <summary> |
| | | /// 属性值列表 |
| | | /// </summary> |
| | | public List<RevitPropValue> PropValueList { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 位置 |
| | | /// </summary> |
| | | public RevitBoundingBox BoundingBox { get; set; } |
| | | |
| | | } |
| | | } |