algebra_3D.Vector.p2

Vector.p2()

Getters : Get the destination of vector as Point.

Returns
Point

The destination of vector

Examples

>>> v=Vector(0,0,0,2,2,2)
>>> print(v.p2())
 ( 2.0 , 2.0 , 2.0 )
printed