I'm surprised that I couldn't find this anywhere. What are the cut angles for all the main fractional aiming points:
I tried using Dr. Dave's formulas here:
but for a 5/8 cut, I get:
which gives me:
which is wrong: the angle should be between 30 and 15 degrees. What am I doing wrong?
Edit: Ahhh...0.38 is in radians rather than degrees. I will fill in the chart myself.
Code:
1/8 = 61 degrees
1/4 = 49 degrees
3/8 = 39 degrees
1/2 = 30 degrees
5/8 = 22 degrees
3/4 = 15 degrees
7/8 = 7 degrees
I tried using Dr. Dave's formulas here:
Code:
fraction = 1 - sin(angle)
angle = asin(1 - fraction)
but for a 5/8 cut, I get:
Code:
angle = asin(3/8)
which gives me:
Code:
0.38
which is wrong: the angle should be between 30 and 15 degrees. What am I doing wrong?
Edit: Ahhh...0.38 is in radians rather than degrees. I will fill in the chart myself.
Last edited: