All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class quicktime.qd3d.camera.CameraRange

java.lang.Object
   |
   +----quicktime.util.QTByteObject
           |
           +----quicktime.qd3d.camera.CameraRange

public final class CameraRange
extends QTByteObject
implements Cloneable
CameraRange contains information for the camera's range. Includes the distance to the nearest projection plane, hither plane, and the distance to the farthest projection plane, yon plane. Refer to TQ3CameraRange in QuickDraw3d


Variable Index

 o kNativeSize
This is the size (the number of bytes) that are required for this class

Constructor Index

 o CameraRange()
Creates a CameraRange object containing no data.
 o CameraRange(float, float)
Creates a CameraRange object containing given data.

Method Index

 o clone()
Returns a copy of this class.
 o getEndianDescriptor()
Returns the EndianDescriptor for this class.
 o getHither()
returns the camera range's distance away from the hither plane.
 o getYon()
returns the camera range's distance away from the yon plane.
 o setHither(float)
sets the camera range's distance away from the hither plane.
 o setYon(float)
sets the camera range's distance away from the yon plane.

Variables

 o kNativeSize
 public static final int kNativeSize
This is the size (the number of bytes) that are required for this class

Constructors

 o CameraRange
 public CameraRange()
Creates a CameraRange object containing no data.

 o CameraRange
 public CameraRange(float hither,
                    float yon)
Creates a CameraRange object containing given data.

Parameters:
h - The distance away from the hither plane(nearest to camera).
y - The distance away from the yon plane(furtherest from camera).

Methods

 o getEndianDescriptor
 public static final EndianDescriptor getEndianDescriptor()
Returns the EndianDescriptor for this class.

Returns:
an EndianDescriptor
 o getHither
 public float getHither()
returns the camera range's distance away from the hither plane.

 o getYon
 public float getYon()
returns the camera range's distance away from the yon plane.

 o setHither
 public void setHither(float hither)
sets the camera range's distance away from the hither plane.

 o setYon
 public void setYon(float yon)
sets the camera range's distance away from the yon plane.

 o clone
 public Object clone()
Returns a copy of this class.

Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index