lixiaojun
2024-10-21 24ec8c3cf6e75efdcb5f12d73ada86b53c677959
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
38
39
40
41
42
43
namespace Yw.WinFrmUI.Bimface
{
    /// <summary>
    /// 
    /// </summary>
    public class Point2d
    {
        /// <summary>
        /// 
        /// </summary>
        public Point2d() { }
 
        /// <summary>
        /// 
        /// </summary>
        public Point2d(double x, double y)
        {
            this.X = x;
            this.Y = y;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public Point2d(Point2d rhs)
        {
            this.X = rhs.X;
            this.Y = rhs.Y;
        }
 
        /// <summary>
        /// x坐标
        /// </summary>
        [JsonProperty("x", NullValueHandling = NullValueHandling.Ignore)]
        public double X { get; set; }
 
        /// <summary>
        /// Y坐标
        /// </summary>
        [JsonProperty("y", NullValueHandling = NullValueHandling.Ignore)]
        public double Y { get; set; }
    }
}