Uses of Class
de.jreality.scene.Light

Packages that use Light
de.jreality.scene This package contains the essential classes of the jReality scene graph. 
de.jreality.scene.event This package contains the classes for handling events in the jReality scene graph. 
de.jreality.util Miscellaneous jReality utilities used in the core packages. 
de.jreality.writer.u3d   
 

Uses of Light in de.jreality.scene
 

Subclasses of Light in de.jreality.scene
 class DirectionalLight
          This is a directional (or parallel or distant) light.
 class PointLight
          A point light class.
 class SpotLight
          This is a spot light.
 

Methods in de.jreality.scene that return Light
 Light SceneGraphComponent.getLight()
          Returns the light child if any.
 

Methods in de.jreality.scene with parameters of type Light
 void SceneGraphComponent.setLight(Light newLight)
          Adds a light, replacing any previously added light.
 void SceneGraphVisitor.visit(Light l)
           
 

Uses of Light in de.jreality.scene.event
 

Methods in de.jreality.scene.event that return Light
 Light LightEvent.getLight()
          Returns the sourceLight.
 

Constructors in de.jreality.scene.event with parameters of type Light
LightEvent(Light source)
          Constructor for LightEvent.
 

Uses of Light in de.jreality.util
 

Methods in de.jreality.util with parameters of type Light
 void CopyVisitor.copyAttr(Light src, Light dst)
           
 

Uses of Light in de.jreality.writer.u3d
 

Methods in de.jreality.writer.u3d that return types with arguments of type Light
static List<Light> U3DSceneUtility.getLights(JrScene scene)