nvm found source :)
thanks though...
function ArcTan(x: Extended): Extended;
var
i: Integer;
begin
if x > 1.0 then
begin
Result := Pi / 2 - ArcTan(1 / x);
end else
begin
for i := 0 to 200 do
begin
Result := Result + ((Pow((-1), i) * Pow(x, (2 * i + 1))) / (2 * i +...
Anyone have the Source for ArcTan2 ( x, y: Extended);
I Can have it in most any programming language, if you can show me how it works.. then that would be great too.
And just so you know I am trying to calculate the Degrees in a line using ArcTan2;
for example:
Degrees := (ArcTan2(MiddleX -...