namespace Yw.WpfUI.Hydro { /// /// 节点 /// public abstract class NodeL3d : VisualL3d { /// /// /// public NodeL3d() { } /// /// /// public NodeL3d(NodeL3d rhs) : base(rhs) { this.Position = new PointL3d(rhs.Position); } /// /// 位置 /// public PointL3d Position { get; set; } /// /// 获取位置 /// public override List GetPositions() { return new List() { this.Position }; } } }