You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
247 B
Python

import math
heading = 360
heading=heading+180
if heading>360:
heading=heading-360
print('head',heading)
if 0 < heading <= 90:
yaw = (90 - float(heading))
print('yaw',yaw)
else:
yaw = (450-float(heading))
print('yaw3',yaw)