3. Neg function

Ad hoc polymorphism ‘neg’ function

3.1. Returns

Point

The opposite point.

3.2. Examples

>>> p=Point(1,2,3)
>>> print(-p)
 ( -1.0 , -2.0 , -3.0 )
printed