using System; using GP = Science.Physics.GeneralPhysics; namespace ScienceTest.PhysicsTest.GeneralPhysicsTest { /// /// AreaVectorTest /// public class AreaVectorTest { private string result; public string Result { get{return result;} } public AreaVectorTest() { } public void Compute() { GP.AreaVector theta1 = new GP.AreaVector(); theta1.X = 10.0; theta1.Y = 20.0; theta1.Z = 30.0; result += theta1.ToString(); } } } // 10 +/- 0 i +20 +/- 0 j +30 +/- 0 k (m^2)