Anyone know how to Calculate the Y coordinate of an ARC based on a variable rotation.
Central Arc Angle = 140;
Arc Radius = 10;
Angle of rotation will flow through 0 to 140, so when rotation is at n I can get y (height) of arc at that time.
Result would be something like
0,0,0,0,00,1,2,3,4,5,6,7,8,9,10,9,8,7,6,5,4,3,2,1,0,0,0,0,0
depending on what rotation I am on.
Basically need the Y on the arc over time (rotating 3D object) only on 0 to 140 degrees of a circle.
Trying to do this with a single equation rather than multiple equations using an if to output this value from an equation that is not even related to arc but just for simple number sequence output.
H 70
H 35 105
H
H 0 140
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
I need the height (H) from X at 0 to 140 degrees.
Thanks
Darcey