namespace Yw.WinFrmUI.HydroW3d { /// /// /// public class Point3d { /// /// /// public Point3d() { } /// /// /// public Point3d(float x, float y, float z) { this.X = x; this.Y = y; this.Z = z; } /// /// /// public Point3d(double x, double y, double z) { this.X = (float)x; this.Y = (float)y; this.Z = (float)z; } /// /// /// public Point3d(Point3d rhs) { this.X = rhs.X; this.Y = rhs.Y; this.Z = rhs.Z; } /// /// x /// public float X { get; set; } /// /// y /// public float Y { get; set; } /// /// z /// public float Z { get; set; } } }