Instantiates a 3d point from coordinates x, y and z.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Point(
	double X,
	double Y,
	double Z
)
Visual Basic (Declaration)
Public Sub New ( _
	X As Double, _
	Y As Double, _
	Z As Double _
)
Visual C++
public:
Point(
	double X, 
	double Y, 
	double Z
)

Parameters

X
Type: System..::.Double
The X-coordinate.
Y
Type: System..::.Double
The Y-coordinate.
Z
Type: System..::.Double
The Z-coordinate.

See Also