lixiaojun
2025-03-17 85fc43aa549bbe24c4d867a055c0d90d21deba8b
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
namespace Yw.WinFrmUI.Hydro
{
    /// <summary>
    /// 节点
    /// </summary>
    public abstract class NodeL3d : VisualL3d
    {
        /// <summary>
        /// 
        /// </summary>
        public NodeL3d() { }
 
        /// <summary>
        /// 
        /// </summary>
        public NodeL3d(NodeL3d rhs) : base(rhs)
        {
            this.Position = new PointL3d(rhs.Position);
        }
 
        /// <summary>
        /// 位置
        /// </summary>
        public PointL3d Position { get; set; }
 
    }
}