public struct PointD { public Double X, Y; public PointD(Double x, Double y) { X = x; Y = y; } }
point = PointD.Empty;