Module raytracer
Package de.grogra.ray

Interface RTSceneVisitor


public interface RTSceneVisitor
Implement this interface with a object processing functionality that is performed when scene graph is traversed.
Author:
Micha
See Also:
  • de.grogra.ray.TRSceneGraph
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Implement this function to process a scene object.
  • Method Details

    • visitObject

      void visitObject(RTObject object)
      Implement this function to process a scene object.
      Parameters:
      object - a scene object. This may be a visible object or a light.
      See Also:
      • de.grogra.ray.TRSceneGraph