I just came across the below line of code , in javascript:
additionalAngelPI = (90 / 180) * Math.PI;
This is a Math question though , basically the above formula will exclude 90 degrees of the circle , but how really does this formula work , why is 90 decided by 180 ? and then multiplied by PI ?
I am not a genious at math but i do understand the basics of circular maths I.E. PI is the ratio between the diameter and the circumference etc.
If anybody can help me understand the above formula it would be great.
Observe that in order to convert $90^{\text{o}}$ to radian units, we do as follows:
$$90^{\text{o}} = 90 \cdot \frac{\pi}{180} \,\text{rad} = \frac{90\pi}{180} \,\text{rad} = \frac{\pi}{2} \,\text{rad}$$
since $$\pi \,\text{rad} = 180^{\text{o}}.$$