From 49bca0faca96aa1149ff6c6194102dfe3de8db87 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期一, 15 七月 2024 10:13:53 +0800 Subject: [PATCH] revit model修改 --- Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs | 24 ++++++------------------ 1 files changed, 6 insertions(+), 18 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs index a75aa67..49077e3 100644 --- a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs +++ b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs @@ -19,10 +19,8 @@ this.Elev = rhs.Elev; this.Demand = rhs.Demand; this.Pattern = rhs.Pattern; - 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; } @@ -47,24 +45,14 @@ public string Pattern { 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; } + } } -- Gitblit v1.9.3