Notifications
Clear all

[Closed] rotation affects position

Hello everybody,

i’m new to maxscript, and want an object animate through a textfile.
The textfile holds information on xpos,ypos,zpos,pitch, roll and yaw for lets say 90 frames.
I managed to read the paramters in, and assign them to the object.
Concering the tranlations in the x,y and z axis, everthing works fine.

But assigning the values of the rotation is making me troubles.
The rotation values are also affecting the translations … and this should not happen…

Below is a similar maxscript, which shows, how i ‘m trying to tell max to do the task:

rot =#()
rota=#()
roll=#()

for i = 1 to 90 do
(
set animate on
slidertime = i-1
coordsys world
–$d_01.position.x = i
$d_01.position.y = i/2
rot[i] = i
–rota[i] = angleaxis i [0,0,1]
–print rota
–$d_01.rotation = rota [i]
coordsys local
roll[i] = angleaxis (i/2) [1,0,0]
print roll [i]
–$d_01.rotation =roll[i]
)
for i = 1 to 90 do
(
rot[i]= i/2
coordsys local
slidertime = i-1
rota[i]= eulerangles 0 0 rot[i]
$d_01.rotation = rota [i]
)

When you execute the script, the first loop gernerates a straight transition. But the second loop adds something to the translation via the rotation …

I would be nice, if somebody of you guys could give me some tips, as i’m thinking, that the problem is sitting infront of my screen…and i got absolutly no glue …

Thanks a lot for your efforts …

Markus

1 Reply

You need to do the rotation in the objects transmatrix space. See PEN’s post here.

-Eric