| | |
| | | { |
| | | this.ModelType = rhs.ModelType; |
| | | this.Elev = rhs.Elev; |
| | | this.Demand = rhs.Demand; |
| | | this.Pattern = rhs.Pattern; |
| | | this.LinkCode = rhs.LinkCode; |
| | | this.FlowCoefficient = rhs.FlowCoefficient; |
| | | this.EmitterType = rhs.EmitterType; |
| | | this.X = rhs.X; |
| | | this.Y = rhs.Y; |
| | | this.Z = rhs.Z; |
| | | this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList(); |
| | | this.BoundingBox = rhs.BoundingBox; |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | public double Elev { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需水量 |
| | | /// 连接节点编码 |
| | | /// </summary> |
| | | public double Demand { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需水模式 |
| | | /// </summary> |
| | | public string Pattern { get; set; } |
| | | public string LinkCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量系数 |
| | |
| | | public string EmitterType { 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; } |
| | | |
| | | } |
| | | } |