using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// SpeedTest /// public class SpeedTest { public SpeedTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Velocity v = new GP.Velocity(); v.X = 1.0; v.Y = 2.0; v.Z = 3.0; GP.Speed obj = new GP.Speed(v); result += obj.ToString()+"\r\n"; } } } //3.74165738677394 +/- 0 (m/s)