cs665
Class RenderingTask

java.lang.Object
  extended bycs665.RenderingTask

public class RenderingTask
extends java.lang.Object

Simply a container for the 3 parts of a rendering task: the scene, the camera, and the image.


Constructor Summary
RenderingTask()
           
 
Method Summary
 cs665.scene.Camera getCamera()
          Getter for property camera.
 cs665.io.RGBColorImage getImage()
          Getter for property image.
 cs665.scene.Scene getScene()
          Getter for property scene.
 void setCamera(cs665.scene.Camera camera)
          Setter for property camera.
 void setImage(cs665.io.RGBColorImage image)
          Setter for property image.
 void setScene(cs665.scene.Scene scene)
          Setter for property scene.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RenderingTask

public RenderingTask()
Method Detail

getImage

public cs665.io.RGBColorImage getImage()
Getter for property image.

Returns:
Value of property image.

setImage

public void setImage(cs665.io.RGBColorImage image)
Setter for property image.

Parameters:
image - New value of property image.

getScene

public cs665.scene.Scene getScene()
Getter for property scene.

Returns:
Value of property scene.

setScene

public void setScene(cs665.scene.Scene scene)
Setter for property scene.

Parameters:
scene - New value of property scene.

getCamera

public cs665.scene.Camera getCamera()
Getter for property camera.

Returns:
Value of property camera.

setCamera

public void setCamera(cs665.scene.Camera camera)
Setter for property camera.

Parameters:
camera - New value of property camera.