algebra_3D.Vector.copy

Vector.copy()

Copy an instance of the current Vector object

Returns
Point

The cloned Vector object

Examples

>>> v=Vector(0,0,0,2,2,2)
>>> w=v.copy()
>>> v==w
True