namespace Yw.WinFrmUI.Bimface { /// /// /// public class Point3d : Point2d { /// /// /// public Point3d() : base() { } /// /// /// public Point3d(double x, double y, double z) : base(x, y) { this.Z = z; } /// /// /// public Point3d(Point3d rhs) : base(rhs) { this.Z = rhs.Z; } /// /// /// [JsonProperty("z", NullValueHandling = NullValueHandling.Ignore)] public double Z { get; set; } } }