I'm building a small Physics engine and I'm having trouble converting my Radian value to Degrees using atan
, as I need an angle to output in Degrees only.
Firstly, I have an x
and y
value, and I need to find an angle using atan
, so I divide y by x like so:
angleDivide = yN / xN;
Then, before putting this value into tan
, I attempt to convert it to Degrees like this:
angleToDegrees = angleDivide * (3.14 / 180);
Then I place angleToDegrees into atan
:
angle = atan(angleToDegrees);
But when I'm displaying angle
, I'm, still getting radian values.
Please could you tell me what is wrong with my code and how to fix this?