"Samuel B." <stb### [at] hotmailcom> wrote:
> I can't remember how I got rotational info out of Blender.
Just looked at the Blender-Python code I used for getting rotational data. The
following seems to be what I went with:
DX = math.degrees(obj.rotation_euler[0])
DY = math.degrees(obj.rotation_euler[1])
DZ = math.degrees(obj.rotation_euler[2])
It would appear that I relied on a built-in conversion function to get the
rotation for each axis. (I don't know if forgetting things is a blessing or a
curse :/)
Sam
Post a reply to this message
|