Just3DPoint.Data.Point3D.Point3D C# (CSharp) Method

Point3D() public method

public Point3D ( double xCoord, double yCoord, double zCoord )
xCoord double
yCoord double
zCoord double
        public Point3D(double xCoord, double yCoord, double zCoord)
            : this()
        {
            this.XCoord = xCoord;
            this.YCoord = yCoord;
            this.ZCoord = zCoord;
        }