View Single Post
# 5 22-10-2002 , 07:45 AM
kbrown's Avatar
Moderator
Join Date: Sep 2002
Location: London, UK
Posts: 3,198
Umm...I'm not sure what you're doing but aren't these equivalent:

name.move -r x y z;

vs.

name.translateX += x;
name.translateY += y;
name.translateZ += z;

Sorry if I'm just confusing you. I still haven't woken up completely user added image

I'm not even sure if you can write "+=" but practically this is the same:

name.translateX = name.translateX + x;
name.translateY = name.translateY + y;
name.translateZ = name.translateZ + z;


Kari
- My Website
- My IMDB

Do a lot, Fail a lot and Learn a lot!