using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// MirrorTest /// public class MirrorTest { public MirrorTest() { } private string result; public string Result { get{return result;} } public void Compute() { GP.Mirror M = new GP.Mirror(); M.ObjectDistance = 10.0; M.FocalLength = 30.0; M.FindImageDistance(); result += M.ImageDistance.ToString()+"\r\n"; } } } // -15