next up previous contents
Next: 11.1.0.1 Accelerated Reflection and Up: 11 Scene Realism Previous: 11 Scene Realism   Contents


11.1 Reflections and Refractions


% latex2html id marker 12214
\fbox{\begin{tabular}{c}
\vrule width 0pt height 0....
...n and Refraction: Medium Below has Higher Index of
Refraction}\\
\end{tabular}}

In both rendering and interactive computer graphics, substantial effort has been devoted to the modeling of reflected and refracted light. This is not surprising - almost all the light perceived in the world is reflected. This section describes several ways to create the effects of reflection and refraction using OpenGL beginning with a very brief review of the relevant physics. Pointers to more detailed descriptions are provided.

From elementary physics, the angle of reflection of a ray is equal to the angle of incidence of the ray (Figure  52). This property is known as the Law of Reflection [22]. The reflected ray lies in the plane defined by the incident ray and the surface normal.

Refraction is defined as the ``change in the direction of travel as light passes from one medium to another'' [22]. This change in direction is caused by the difference in the speed of light traveling through the two media. The refractivity of a material is characterized by the index of refraction of the material, or the ratio of the speed of light in the material to the speed of light in a vacuum [22].


% latex2html id marker 12230
\fbox{\begin{tabular}{c}
\vrule width 0pt height 0....
...{5.7in}}{\small Figure \thefigure . Total Internal Reflection}\\
\end{tabular}}

The direction of a light ray after it passes from one medium to another is computed from the direction of the incident ray, the normal of the surface at the intersection of the incident ray, and the indices of refraction of the two materials. The behavior is shown in Figure  52. The first medium through which the ray passes has an index of refraction $n_{1}$ and the second has an index of refraction $n_{2}$. The angle of incidence, $\Theta_{1}$, is the angle between the incident ray and the surface normal. The refracted ray forms the angle $\Theta_{2}$ with the normal. The incident and refracted rays are coplanar. The relationship between the angle of incidence and the angle of refraction is stated as Snell's Law[22]:

\begin{displaymath}
n_{1}\cos \Theta_{1} = n_{2} \cos \Theta_{2}
\end{displaymath} (4)

If $n_1 > n_2$ (light is passing from a more refractive material to a less refractive material), past some critical angle the incident ray will be bent so far that it will not cross the boundary. This phenomenon is known as total internal reflection and is illustrated in Figure 53 [22].

When a ray hits a surface, some light is reflected off the surface and some is transmitted. The weighting of the transmitted and reflected light is determined by the Fresnel equations.

More details about reflection and refraction can be gleaned from most college physics books. For more details on the reflection and transmission of light from a computer graphics perspective, consult one of several general computer graphics books or books on radiosity or ray tracing [18], [35], [48].



Subsections
next up previous contents
Next: 11.1.0.1 Accelerated Reflection and Up: 11 Scene Realism Previous: 11 Scene Realism   Contents
2001-01-10