|
angle mathThis is just here so I don't forget ;) (small characters here refer to angles, capitals to lengths of sides) An oblique triangleA triangle without a 90 degree angle
Python equivalents of the above math are for instance (untested):
A = math.sin(a) / (math.sin(b)/B) A right angle triangleA triangle with a single 90 degree angle (a in this case)
Python equivalents of the above math are for instance:
c = math.asin(C/A) Remember soscastoa! |
French proverb
Qui bête va à Rome, tel en retourne When a fool goes to Rome, the same fool returns from there |