Uses of Class
net.sf.j3d.threeD.raytracer.engine.Scene

Packages that use Scene
net.sf.j3d.physics   
net.sf.j3d.threeD.io   
net.sf.j3d.threeD.raytracer.engine   
net.sf.j3d.threeD.raytracer.network   
net.sf.j3d.threeD.run   
net.sf.j3d.threeD.ui.dialogs   
net.sf.j3d.threeD.ui.displays   
net.sf.j3d.threeD.ui.event   
net.sf.j3d.threeD.ui.menus   
net.sf.j3d.threeD.ui.panels   
net.sf.j3d.threeD.ui.tree   
 

Uses of Scene in net.sf.j3d.physics
 

Subclasses of Scene in net.sf.j3d.physics
 class Simulation
           
 

Methods in net.sf.j3d.physics that return Scene
 Scene Simulation.getScene()
           
 

Uses of Scene in net.sf.j3d.threeD.io
 

Methods in net.sf.j3d.threeD.io that return Scene
static Scene FileDecoder.decodeScene(InputStream fileIn, int encoding, boolean ui, ExceptionListener listener)
           
static Scene FileDecoder.decodeScene(InputStream fileIn, int encoding, boolean ui, ExceptionListener listener, Surface s)
          Decodes the scene data read from the specified InputStream object using the encoding specified by the integer encoding code and returnes the new Scene object.
static Scene FileDecoder.decodeSceneFile(File file, int encoding, boolean ui, ExceptionListener listener)
           
static Scene FileDecoder.decodeSceneFile(File file, int encoding, boolean ui, ExceptionListener listener, Surface s)
          Decodes the scene data stored in the file represented by the specified File object using the encoding specified by the integer encoding code and returns the new Scene object.
 

Methods in net.sf.j3d.threeD.io with parameters of type Scene
static void FileEncoder.encodeSceneFile(Scene scene, File file, int encoding)
          Encodes the specified Scene object using the encoding specified by the integer encoding code and saves the encoded data in the file represented by the specified File object.
 

Uses of Scene in net.sf.j3d.threeD.raytracer.engine
 

Methods in net.sf.j3d.threeD.raytracer.engine with parameters of type Scene
static double RayTracingEngine.calculateAverageBrightness(Scene scene, int width, int height, int itr)
           
static double RayTracingEngine.calculateAverageBrightness(Scene scene, int width, int height, int ssWidth, int ssHeight, int itr)
           
static double RayTracingEngine.calculateAverageBrightness(Scene scene, int x, int y, int dx, int dy, int width, int height, int ssWidth, int ssHeight, int itr)
           
static RGB[][] RayTracingEngine.render(Scene scene, int x, int y, int dx, int dy, int width, int height, int ssWidth, int ssHeight, ProgressMonitor monitor)
           
static RGB[][] RayTracingEngine.render(Scene scene, int width, int height, int ssWidth, int ssHeight, ProgressMonitor monitor)
          Computes all intersection and lighting calculations required to produce an image of the specified width and height that is a rendering of the specified Scene object and returns the image as an array of RGB objects.
static RGB[][] RayTracingEngine.render(Scene scene, RenderParameters p, ProgressMonitor monitor)
          Renders the specified scene.
 

Uses of Scene in net.sf.j3d.threeD.raytracer.network
 

Methods in net.sf.j3d.threeD.raytracer.network that return Scene
 Scene RayTracingJob.getScene()
           
 Scene SceneLoader.loadScene(String uri)
           
 Scene RayTracingJob.loadScene(String uri)
           
 

Uses of Scene in net.sf.j3d.threeD.run
 

Methods in net.sf.j3d.threeD.run that return Scene
 Scene Project.getScene()
           
 

Methods in net.sf.j3d.threeD.run with parameters of type Scene
 void Project.setScene(Scene s)
          Sets the Scene object stored by this Project object.
 

Constructors in net.sf.j3d.threeD.run with parameters of type Scene
Project(Scene s)
          Constructs a new Project object.
RayTracer(Scene scene)
          Constructs a new RayTracer object using the specified Scene object.
 

Uses of Scene in net.sf.j3d.threeD.ui.dialogs
 

Constructors in net.sf.j3d.threeD.ui.dialogs with parameters of type Scene
EditCameraDialog(Scene scene)
          Constructs a new EditCameraDialog object that can be used to modify the specified Camera object.
NewLightDialog(Scene scene)
          Constructs a new NewLightDialog object using the specified Scene object.
NewSurfaceDialog(Scene scene)
          Constructs a new NewSurfaceDialog object using the specified Scene object.
 

Uses of Scene in net.sf.j3d.threeD.ui.displays
 

Constructors in net.sf.j3d.threeD.ui.displays with parameters of type Scene
RenderTestFrame(Scene s, int w, int ssd)
           
 

Uses of Scene in net.sf.j3d.threeD.ui.event
 

Methods in net.sf.j3d.threeD.ui.event that return Scene
 Scene SceneOpenEvent.getScene()
          Returns the new Scene object.
 

Constructors in net.sf.j3d.threeD.ui.event with parameters of type Scene
SceneOpenEvent(Scene scene)
          Constructs a new SceneOpenEvent using the specified Scene object.
 

Uses of Scene in net.sf.j3d.threeD.ui.menus
 

Constructors in net.sf.j3d.threeD.ui.menus with parameters of type Scene
DefaultMenuBar(Scene scene, RenderPanel renderPanel)
          Constructs a new DefaultMenuBar object using the specified Scene object.
DefaultToolBar(Scene s, RenderPanel rpanel)
           
EditMenu(Scene scene, SurfaceInfoPanel surfaceInfoPanel, LightInfoPanel lightInfoPanel)
          Constructs a new EditMenu object using the specified Scene object and the specified SurfaceInfoPanel and LightInfoPanel objects.
EditSceneMenu(Scene scn, SurfaceInfoPanel surfaceInfoPanel, LightInfoPanel lightInfoPanel)
          Constructs a new EditSceneMenu object using the specified Scene object and the specified SurfaceInfoPanel and LightInfoPanel objects.
FileMenu(Scene scene, RenderPanel renderPanel, SurfaceInfoPanel surfacePanel)
          Constructs a new FileMenu object using the specified Scene object.
ImportMenu(Scene scn)
          Constructs a new OpenMenu object.
NewMenu(Scene scn)
          Constructs a new NewMenu object.
OpenMenu(Scene scn)
          Constructs a new OpenMenu object.
SaveMenu(Scene scene, RenderPanel renderPanel, SurfaceInfoPanel surfacePanel)
          Constructs a new SaveMenu object.
 

Uses of Scene in net.sf.j3d.threeD.ui.panels
 

Methods in net.sf.j3d.threeD.ui.panels that return Scene
 Scene LightListModel.getScene()
          Returns the Scene object used by this LightListModel object.
 

Constructors in net.sf.j3d.threeD.ui.panels with parameters of type Scene
LightInfoPanel(Scene scn)
          Constructs a new LightInfoPanel object using the specified Scene object.
LightListModel(Scene scene)
          Constructs a new LightListModel object using the specified Scene object.
RenderPanel(Scene scene)
          Constructs a new RenderPanel object that can be used to render the specified Scene object.
SurfaceInfoPanel(Scene scn)
          Constructs a new SurfaceInfoPanel using the specified Scene object.
SurfaceListModel(Scene scene)
          Constructs a new SurfaceListModel object using the specified Scene object.
 

Uses of Scene in net.sf.j3d.threeD.ui.tree
 

Methods in net.sf.j3d.threeD.ui.tree that return Scene
 Scene SceneTreeNode.getScene()
          Returns the Scene object stored by this SceneTreeNode object.
 

Constructors in net.sf.j3d.threeD.ui.tree with parameters of type Scene
SceneTreeNode(Scene scene)
          Constructs a new SceneTreeNode object using the specified Scene object.