public DoublePoint3D(DoublePoint2D xy) { X = xy.X; Y = xy.Y; Z = 0; }
public DoublePoint3D(DoublePoint2D xy, double z) { X = xy.X; Y = xy.Y; Z = z; }