using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter35 { /// /// Example06: Light Passing Through a Slab /// A light beam passes from medium 1 to medium 2, /// with the latter medium being a thick slab of material /// whose index of refraction is n_2 (Fig. 35.16a). Show that /// the emerging beam is parallel to the incident beam. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }