using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter36 { /// /// Example13: Watch Your p's and q's! /// Use a spreadsheet or a similar tool to create two /// graphs of image distance as a function of object /// distance - one for a lens for which the /// focal length is 10cm and one for a lens for which /// the focal length is -10 cm. /// public class Example13 { public Example13() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }