lixiaojun
2025-04-03 2e52f10a2cccb1471859b05e0d0e9dd9649859c8
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
28
29
30
31
32
33
34
35
36
37
namespace Yw.WpfUI.Hydro
{
    /// <summary>
    /// 简单节点样式
    /// </summary>
    public class SimpleNodeL3dStyle : SimpleVisualL3dStyle
    {
        /// <summary>
        /// 
        /// </summary>
        public SimpleNodeL3dStyle() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SimpleNodeL3dStyle(string htmlColor, double radiu) : base(htmlColor)
        {
            this.Radiu = radiu;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public SimpleNodeL3dStyle(SimpleNodeL3dStyle rhs) : base(rhs)
        {
            this.Radiu = rhs.Radiu;
        }
 
        /// <summary>
        /// 半径
        /// </summary>
        public double Radiu { get; set; }
 
 
 
    }
}