views:

88

answers:

1

Is there a standard class in Python to emulate a geometric point that includes coordinates and a value, including arithmetic operations between the coordinates?

+1  A: 

If you just want standard matrix arithmetic operations for your coordinates, try numpy's array type.

chrispy