using System; using System.Collections.Generic; using System.Text; using Sunweaver.Commands.Attributes; namespace Sunweaver.Commands.BinaryMath { [BasePair] public class atan : Abstracts.BinaryOperation { public override void Operation(long a, long b) { VM.Stack.Push( (long)Math.Round(Math.Atan2(a,b) / (2 * Math.PI) * 1080)); } } }