using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter35 { /// /// Example02: The Double-Reflected Light Ray /// Two mirror make an angle of 120^{\circle} with each other, /// as illustrated in Figure 35.7a. A ray is incident /// on mirror M_1 at an angle of 65^{\circle} to the normal. /// Find the direction of the ray after it is reflected /// from mirror M_2. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }