javax.media.ding3d
Class DepthComponent

java.lang.Object
  extended by javax.media.ding3d.SceneGraphObject
      extended by javax.media.ding3d.NodeComponent
          extended by javax.media.ding3d.DepthComponent
Direct Known Subclasses:
DepthComponentFloat, DepthComponentInt, DepthComponentNative

public abstract class DepthComponent
extends NodeComponent

Abstract base class that defines a 2D array of depth (Z) values.


Field Summary
static int ALLOW_DATA_READ
          Specifies that this DepthComponent object allows reading its depth data component information.
static int ALLOW_SIZE_READ
          Specifies that this DepthComponent object allows reading its size component information (width and height).
 
Method Summary
 int getHeight()
          Retrieves the height of this depth component object.
 int getWidth()
          Retrieves the width of this depth component object.
 
Methods inherited from class javax.media.ding3d.NodeComponent
cloneNodeComponent, cloneNodeComponent, duplicateNodeComponent, duplicateNodeComponent, getDuplicateOnCloneTree, setDuplicateOnCloneTree
 
Methods inherited from class javax.media.ding3d.SceneGraphObject
clearCapability, clearCapabilityIsFrequent, getCapability, getCapabilityIsFrequent, getName, getUserData, isCompiled, isLive, setCapability, setCapabilityIsFrequent, setName, setUserData, toString, updateNodeReferences
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ALLOW_SIZE_READ

public static final int ALLOW_SIZE_READ
Specifies that this DepthComponent object allows reading its size component information (width and height).

See Also:
Constant Field Values

ALLOW_DATA_READ

public static final int ALLOW_DATA_READ
Specifies that this DepthComponent object allows reading its depth data component information.

See Also:
Constant Field Values
Method Detail

getWidth

public int getWidth()
Retrieves the width of this depth component object.

Returns:
the width of the array of depth values
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

getHeight

public int getHeight()
Retrieves the height of this depth component object.

Returns:
the height of the array of depth values
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph