Converts the 3d vector into a 3d point.

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

Syntax

C#
public Point ToPoint()
Visual Basic (Declaration)
Public Function ToPoint As Point
Visual C++
public:
Point^ ToPoint()

Return Value

Returns the coordinates of the 3d vector as a point.

Remarks

A 3d vector v = (x, y, z) is converted into a point p = (x, y, z)

See Also