Can someone please tell me why this code doesn't work?

Blitz3D Forums/Blitz3D Programming/Can someone please tell me why this code doesn't work?

Craig H. Nisbet(Posted 2004) [#1]
I don't seem to be getting accurate rotational values from my entities with this code. check it out.

Graphics3D 640,480
SetBuffer BackBuffer()

MyEntity = CreateCube()

;Absolute rotation values
RotateEntity MyEntity,90,180,360

Print "Pitch " + EntityPitch#(MyEntity)
Print "Yaw " + EntityYaw#(MyEntity)
Print "Roll " + EntityRoll#(MyEntity)


Craig H. Nisbet(Posted 2004) [#2]
Never mind, I got it.