using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// AngularAccelerationTest /// public class AngleTest { private string result; public string Result { get{return result;} } public AngleTest() { } public void Compute() { GP.Angle theta = new GP.Angle(); theta.deg = 60.0; result+=theta.rad.ToString()+" "+theta.deg.ToString()+"\r\n"; } } } // 1.0471975511966 60