namespace Yw.WinFrmUI.Bimface { /// /// /// public class Point2d { /// /// /// public Point2d() { } /// /// /// public Point2d(double x, double y) { this.X = x; this.Y = y; } /// /// /// public Point2d(Point2d rhs) { this.X = rhs.X; this.Y = rhs.Y; } /// /// x坐标 /// [JsonProperty("x", NullValueHandling = NullValueHandling.Ignore)] public double X { get; set; } /// /// Y坐标 /// [JsonProperty("y", NullValueHandling = NullValueHandling.Ignore)] public double Y { get; set; } } }