atan2

種類メソッド
書式 Math.atan(Y, X)
解説
XY座標から角度(ラジアン)を求めます。
サンプルコード
x = inputs[0];
y = inputs[1];
rad = Math.atan2(y,x);
outputs[0] = rad * 180/Math.PI;
実際のスクリプトをダウンロード