Point.Point3D.Point3D C# (CSharp) Method

Point3D() public method

public Point3D ( double x, double y, double z ) : System
x double
y double
z double
return System
        public Point3D(double x, double y, double z)
            : this()
        {
            this.x = x;
            this.y = y;
            this.z = z;
        }