using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter37 { /// /// Example05: Interference in a Wedge-Shaped Film /// A thin, wedge-shaped film of index of refraction n is /// illuminated with monochromatic light of wavelength \lambda, /// as illustrated in Figure 37.21a. Describe the interference /// pattern obserbed for this case. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }