anyone knows how to write:
( x - 2 )
( y - 3 )
( z - 5 )
in python? Given Point P = (x, y, z) and Point OQ = (2, 3, 5) I tried defining Point P with a variable and subtract it with Point OQ.But the problem seem to lie with the x, y, z. The error i keep getting is that x is not defined etc.
Anyone got any idea?