All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.media.j3d.DepthImage

java.lang.Object
   |
   +----java.media.j3d.DepthImage

public abstract class DepthImage
extends Object
Abstract base class that defines a 2D array of depth (Z) values.


Constructor Index

 o DepthImage()
Constructs a new depth (z-buffer) image object.

Method Index

 o getDuplicateOnCloneTree()
Returns this object's duplicateOnCloneTree value.
 o setDuplicateOnCloneTree(boolean)
Sets this object's duplicateOnCloneTree value.

Constructors

 o DepthImage
 public DepthImage()
Constructs a new depth (z-buffer) image object.

Methods

 o setDuplicateOnCloneTree
 public final void setDuplicateOnCloneTree(boolean duplicate)
Sets this object's duplicateOnCloneTree value. The duplicateOnCloneTree value is used to determine if NodeComponent objects are to be duplicated or referenced during a cloneTree operation. A value of true means that this NodeComponent object should be duplicated, while a value of false indicates that this NodeComponent object's reference will be copied into the newly cloned object. This value can be overriden via the forceDuplicate parameter of the cloneTree method.

Parameters:
duplicate - the value to set.
See Also:
cloneTree
 o getDuplicateOnCloneTree
 public final boolean getDuplicateOnCloneTree()
Returns this object's duplicateOnCloneTree value. The duplicateOnCloneTree value is used to determine if NodeComponent objects are to be duplicated or referenced during a cloneTree operation. A value of true means that this NodeComponent object should be duplicated, while a value of false indicates that this NodeComponent object's reference will be copied into the newly cloned object. This value can be overriden via the forceDuplicate parameter of the cloneTree method.

Returns:
the value of this node's duplicateOnCloneTree
See Also:
cloneTree

All Packages  Class Hierarchy  This Package  Previous  Next  Index