Re: [Maya-Python] finding the difference between two coordinates

2016-12-07 Thread sam
cool thanks guys, was confusing me -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsubscr...@googlegroups.com. To vi

Re: [Maya-Python] finding the difference between two coordinates

2016-12-07 Thread f.michal
W dniu 2016-12-07 o 09:58, alessia.bec...@gmail.com pisze: Hi, this maya be a dumb question. I basically have two points in space a(1,2,3) and b(-2,4,7) and i want to find out what values i need to add to the 'a' coordinates to get to the 'b' coordinates. If i subtract then it would give me (

Re: [Maya-Python] finding the difference between two coordinates

2016-12-07 Thread Nicolas Chaverou
Need to go the other way: vector from a to b is (b-a) {-3, 2, 4} Best, --- [image: Nicolas Chaverou - Golaem Crowd Product Manager - Golaem SA] +33 (0)2 99 27 21 44 http://www.golaem.com On Wed, Dec 7, 2016 at 9:58 AM, wrote: > Hi, > > this maya be a dumb question. I basically have two point

[Maya-Python] finding the difference between two coordinates

2016-12-07 Thread alessia . beccia
Hi, this maya be a dumb question. I basically have two points in space a(1,2,3) and b(-2,4,7) and i want to find out what values i need to add to the 'a' coordinates to get to the 'b' coordinates. If i subtract then it would give me (1-(-2)),(2-4),(3-7) = (3,-2,-4). but then if i add these di