Recent content by Sky Scripter

  1. S

    Find Source & Learn ArcTan2 for Degrees Calculation

    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 +...
  2. S

    Option 12: What Happens After Death?

    Some how i think you choose what it will be..I know its the endings, beginning...
  3. S

    Find Source & Learn ArcTan2 for Degrees Calculation

    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 -...
Back
Top