algebra_3D.Point.copy

Point.copy()

Copy an instance of the current Point object

Returns
Point

The cloned Point object

Examples

>>> p=Point(1,2,3)
>>> m=p.copy()
>>> print(p)
 ( 1.0 , 2.0 , 3.0 )
printed
>>> print(m)
 ( 1.0 , 2.0 , 3.0 )
printed