• Dear visitors,

    The email issue has been finally solved.
    Thank you for your patience and happy browsing.

    Team ACM.

Car Yaw angle

fughettaboutit

aka leBluem
in a python app? idk about yaw, but pitch and roll are available

Code:
from sim_info import info # widely known lib, included in many apps, interface to ac-memory

pitch = info.physics.pitch
roll = info.physics.roll
 
Top