Uses of Class
apps.lightrays.raytracer.scene.SceneObject

Packages that use SceneObject
apps.lightrays.raytracer.scene   
apps.lightrays.raytracer.scene.geometry   
apps.lightrays.raytracer.shaders   
 

Uses of SceneObject in apps.lightrays.raytracer.scene
 

Subclasses of SceneObject in apps.lightrays.raytracer.scene
 class Light
          The Class Light.
 

Fields in apps.lightrays.raytracer.scene declared as SceneObject
 SceneObject RayHitInfo.object
          The object.
 

Methods in apps.lightrays.raytracer.scene that return types with arguments of type SceneObject
 java.util.List<SceneObject> Scene.getSceneObjects()
          Gets the scene objects.
 

Methods in apps.lightrays.raytracer.scene with parameters of type SceneObject
 void Scene.addSceneObject(SceneObject obj)
          Adds the scene object.
 

Uses of SceneObject in apps.lightrays.raytracer.scene.geometry
 

Subclasses of SceneObject in apps.lightrays.raytracer.scene.geometry
 class Plane
          The Class Plane.
 class Sphere
          The Class Sphere.
 class TexturedPlane
          The Class TexturedPlane.
 

Uses of SceneObject in apps.lightrays.raytracer.shaders
 

Constructors in apps.lightrays.raytracer.shaders with parameters of type SceneObject
PhongShader(Scene scene, Ray incident_ray, RayHitInfo hit, SceneObject obj)
          Instantiates a new phong shader.
Shader(Scene scene, Ray incident_ray, SceneObject obj)
          Instantiates a new shader.