duheng
2024-11-14 60908c00556f4f53d82f5588ae3013f80c443590
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
namespace Yw.WinFrmUI.Bimface
{
    /// <summary>
    /// 
    /// </summary>
    public class Point3d : Point2d
    {
        /// <summary>
        /// 
        /// </summary>
        public Point3d() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public Point3d(double x, double y, double z) : base(x, y)
        {
            this.Z = z;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public Point3d(Point3d rhs) : base(rhs)
        {
            this.Z = rhs.Z;
        }
 
        /// <summary>
        /// 
        /// </summary>
        [JsonProperty("z", NullValueHandling = NullValueHandling.Ignore)]
        public double Z { get; set; }
    }
}