Experiments in Ray-Tracing, Part 5 - Reflections

This is a very old article, included for historical interest only!

Reflections are so easy to implement in a ray-tracer, it’s not suprising that so many ray-traced images contain them. To implement reflectivee surfaces, we need to extend (or composite) our materials to support a reflectivity factor - this ranges from zero (absolutely no reflections) to one (a perfect mirror). Equally, as the reflectivity ranges from zero to one, the natural colour of the surface is scaled from one to zero.

Calculating the colour of a reflective surface is (usually) a recursive process - a secondary ray is cast from the reflective surface, and used to calculate the contribution to the primary colour. Of course, if the secondary ray hits a reflective surface, another ray will be fired, and so forth… so a limit of some kind is usually applied to this process, to end any potentially endless recursion.

Ray-tracing reflections

Let’s hope the above image makes things clearer. On the left is the camera/eye, casting a primary ray (marked “1”) which intersects a reflective sphere. (We can see that the colour of the pixel should be green).

Since the surface is reflective, we  recursively cast a secondary ray (marked “2”) at a vector that is the reflection of the primary ray against the surface (calculated against the intersection normal, “N”).

This secondary ray intersects another object (the green sphere), and here we calculate the colour as usual based on the lighting calculations.

Since the final object wasn’t reflective, the recursion ends, and the pixel is assigned the colour calculated via the secondary ray.

Here’s my code for a reflective material:

public sealed class ReflectiveMaterial : Material
{
  public ReflectiveMaterial( double reflectivity, Material material )
  {
    _reflectivity = reflectivity;
    _material = material;
  }

  public override Base.Color GetColor( Scene.Scene scene, Base.Intersection intersection, int depth )
  {
    var surfaceColor = _material.GetColor( scene, intersection, depth );
    var reflectColor = scene.BackgroundColor;

    if( depth < 3 )
    {
      var c1 = -Base.Vector.Dot( intersection.Normal, intersection.Ray.Vector );
      var r1 = intersection.Ray.Vector + ( intersection.Normal * 2 * c1 );
      var reflectRay = new Base.Ray( intersection.Position, r1 );

      var reflectIntersection = scene.GetIntersection( reflectRay, intersection.Primitive );

      if( reflectIntersection != null )
      {
        reflectColor = Tracing.Tracer.TraceRay( reflectIntersection, scene, depth + 1 );
      }
    }

    return surfaceColor * ( 1 - _reflectivity ) + reflectColor * _reflectivity;
  }

  private double _reflectivity;
  private Material _material;
}

Published: Tuesday, July 22, 2008

Pinterest
Reddit
Hacker News

You may be interested in...

Hackification.io is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to amazon.com. I may earn a small commission for my endorsement, recommendation, testimonial, and/or link to any products or services from this website.

Comments? Questions?