javax.media.j3d
Class TexCoordGeneration

java.lang.Object
  |
  +--javax.media.j3d.SceneGraphObject
        |
        +--javax.media.j3d.NodeComponent
              |
              +--javax.media.j3d.TexCoordGeneration

public class TexCoordGeneration
extends NodeComponent

The TexCoordGeneration object contains all parameters needed for texture coordinate generation. It is included as part of an Appearance component object.


Field Summary
static int ALLOW_ENABLE_READ
          Specifies that this TexCoordGeneration object allows reading its enable flag.
static int ALLOW_ENABLE_WRITE
          Specifies that this TexCoordGeneration object allows writing its enable flag.
static int ALLOW_FORMAT_READ
          Specifies that this TexCoordGeneration object allows reading its format information.
static int ALLOW_MODE_READ
          Specifies that this TexCoordGeneration object allows reading its mode information.
static int ALLOW_PLANE_READ
          Specifies that this TexCoordGeneration object allows reading its planeS, planeR, and planeT component information.
static int EYE_LINEAR
          Generates texture coordinates as a linear function in eye coordinates.
static int OBJECT_LINEAR
          Generates texture coordinates as a linear function in object coordinates.
static int SPHERE_MAP
          Generates texture coordinates using a spherical reflection mapping in eye coordinates.
static int TEXTURE_COORDINATE_2
          Generates 2D texture coordinates (S and T).
static int TEXTURE_COORDINATE_3
          Generates 3D texture coordinates (S, T, and R).
 
Constructor Summary
TexCoordGeneration()
          Constructs a TexCoordGeneration object with default parameters.
TexCoordGeneration(int genMode, int format)
          Constructs a TexCoordGeneration object with the specified genMode and format.
TexCoordGeneration(int genMode, int format, Vector4f planeS)
          Constructs a TexCoordGeneration object with the specified genMode, format, and the S coordinate plane equation.
TexCoordGeneration(int genMode, int format, Vector4f planeS, Vector4f planeT)
          Constructs a TexCoordGeneration object with the specified genMode, format, and the S and T coordinate plane equations.
TexCoordGeneration(int genMode, int format, Vector4f planeS, Vector4f planeT, Vector4f planeR)
          Constructs a TexCoordGeneration object with the specified genMode, format, and the S, T, and R coordinate plane equations.
 
Method Summary
 NodeComponent cloneNodeComponent()
          Creates a new TexCoordGeneration object.
 void duplicateNodeComponent(NodeComponent originalNodeComponent)
          Copies the information found in originalNodeComponent to the current node.
 boolean getEnable()
          Retrieves the state of the texCoordGeneration enable flag.
 int getFormat()
          Retrieves the current TexCoordGeneration format.
 int getGenMode()
          Retrieves the current TexCoordGeneration generation mode.
 void getPlaneR(Vector4f planeR)
          Retrieves a copy of the plane equation used to generate the R coordinate.
 void getPlaneS(Vector4f planeS)
          Retrieves a copy of the plane equation used to generate the S coordinate.
 void getPlaneT(Vector4f planeT)
          Retrieves a copy of the plane equation used to generate the T coordinate.
 void setEnable(boolean state)
          Enables or disables texture coordinate generation for this appearance component object.
 void setFormat(int format)
          Sets the TexCoordGeneration format to the specified value.
 void setGenMode(int genMode)
          Sets the TexCoordGeneration generation mode to the specified value.
 void setPlaneR(Vector4f planeR)
          Sets the R coordinate plane equation.
 void setPlaneS(Vector4f planeS)
          Sets the S coordinate plane equation.
 void setPlaneT(Vector4f planeT)
          Sets the T coordinate plane equation.
 
Methods inherited from class javax.media.j3d.NodeComponent
getDuplicateOnCloneTree, setDuplicateOnCloneTree
 
Methods inherited from class javax.media.j3d.SceneGraphObject
clearCapability, duplicateSceneGraphObject, getCapability, getUserData, isCompiled, isLive, setCapability, setUserData
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ALLOW_ENABLE_READ

public static final int ALLOW_ENABLE_READ
Specifies that this TexCoordGeneration object allows reading its enable flag.

ALLOW_ENABLE_WRITE

public static final int ALLOW_ENABLE_WRITE
Specifies that this TexCoordGeneration object allows writing its enable flag.

ALLOW_FORMAT_READ

public static final int ALLOW_FORMAT_READ
Specifies that this TexCoordGeneration object allows reading its format information.

ALLOW_MODE_READ

public static final int ALLOW_MODE_READ
Specifies that this TexCoordGeneration object allows reading its mode information.

ALLOW_PLANE_READ

public static final int ALLOW_PLANE_READ
Specifies that this TexCoordGeneration object allows reading its planeS, planeR, and planeT component information.

OBJECT_LINEAR

public static final int OBJECT_LINEAR
Generates texture coordinates as a linear function in object coordinates.

EYE_LINEAR

public static final int EYE_LINEAR
Generates texture coordinates as a linear function in eye coordinates.

SPHERE_MAP

public static final int SPHERE_MAP
Generates texture coordinates using a spherical reflection mapping in eye coordinates.

TEXTURE_COORDINATE_2

public static final int TEXTURE_COORDINATE_2
Generates 2D texture coordinates (S and T).

TEXTURE_COORDINATE_3

public static final int TEXTURE_COORDINATE_3
Generates 3D texture coordinates (S, T, and R).
Constructor Detail

TexCoordGeneration

public TexCoordGeneration()
Constructs a TexCoordGeneration object with default parameters. The default values are as follows:

TexCoordGeneration

public TexCoordGeneration(int genMode,
                          int format)
Constructs a TexCoordGeneration object with the specified genMode and format. Defaults will be used for the rest of the state variables.
Parameters:
genMode - texture generation mode, one of: OBJECT_LINEAR, EYE_LINEAR, or SPHERE_MAP
format - texture format, one of: TEXTURE_COORDINATE_2 or TEXTURE_COORDINATE_3

TexCoordGeneration

public TexCoordGeneration(int genMode,
                          int format,
                          Vector4f planeS)
Constructs a TexCoordGeneration object with the specified genMode, format, and the S coordinate plane equation. Defaults will be used for the rest of the state variables.
Parameters:
genMode - texture generation mode, one of: OBJECT_LINEAR, EYE_LINEAR, or SPHERE_MAP
format - texture format, one of: TEXTURE_COORDINATE_2 or TEXTURE_COORDINATE_3
planeS - plane equation for the S coordinate

TexCoordGeneration

public TexCoordGeneration(int genMode,
                          int format,
                          Vector4f planeS,
                          Vector4f planeT)
Constructs a TexCoordGeneration object with the specified genMode, format, and the S and T coordinate plane equations. Defaults will be used for the rest of the state variables.
Parameters:
genMode - texture generation mode, one of: OBJECT_LINEAR, EYE_LINEAR, or SPHERE_MAP
format - texture format, one of: TEXTURE_COORDINATE_2 or TEXTURE_COORDINATE_3
planeS - plane equation for the S coordinate
planeT - plane equation for the T coordinate

TexCoordGeneration

public TexCoordGeneration(int genMode,
                          int format,
                          Vector4f planeS,
                          Vector4f planeT,
                          Vector4f planeR)
Constructs a TexCoordGeneration object with the specified genMode, format, and the S, T, and R coordinate plane equations.
Parameters:
genMode - texture generation mode, one of: OBJECT_LINEAR, EYE_LINEAR, or SPHERE_MAP
format - texture format, one of: TEXTURE_COORDINATE_2 or TEXTURE_COORDINATE_3
planeS - plane equation for the S coordinate
planeT - plane equation for the T coordinate
planeR - plane equation for the R coordinate
Method Detail

setEnable

public final void setEnable(boolean state)
Enables or disables texture coordinate generation for this appearance component object.
Parameters:
state - true or false to enable or disable texture coordinate generation
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

getEnable

public final boolean getEnable()
Retrieves the state of the texCoordGeneration enable flag.
Returns:
true if texture coordinate generation is enabled, false if texture coordinate generation is disabled
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

setFormat

public final void setFormat(int format)
Sets the TexCoordGeneration format to the specified value.
Parameters:
format - texture format, one of: TEXTURE_COORDINATE_2 or TEXTURE_COORDINATE_3
Throws:
RestrictedAccessException - if the method is called when this object is part of live or compiled scene graph.

getFormat

public final int getFormat()
Retrieves the current TexCoordGeneration format.
Returns:
the texture format
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

setGenMode

public final void setGenMode(int genMode)
Sets the TexCoordGeneration generation mode to the specified value.
Parameters:
genMode - texture generation mode, one of: OBJECT_LINEAR, EYE_LINEAR, or SPHERE_MAP
Throws:
RestrictedAccessException - if the method is called when this object is part of live or compiled scene graph.

getGenMode

public final int getGenMode()
Retrieves the current TexCoordGeneration generation mode.
Returns:
the texture generation mode
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

setPlaneS

public final void setPlaneS(Vector4f planeS)
Sets the S coordinate plane equation. This plane equation is used to generate the S coordinate in OBJECT_LINEAR and EYE_LINEAR texture generation modes.
Parameters:
planeS - plane equation for the S coordinate
Throws:
RestrictedAccessException - if the method is called when this object is part of live or compiled scene graph.

getPlaneS

public final void getPlaneS(Vector4f planeS)
Retrieves a copy of the plane equation used to generate the S coordinate.
Parameters:
planeS - the S coordinate plane equation
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

setPlaneT

public final void setPlaneT(Vector4f planeT)
Sets the T coordinate plane equation. This plane equation is used to generate the T coordinate in OBJECT_LINEAR and EYE_LINEAR texture generation modes.
Parameters:
planeT - plane equation for the T coordinate
Throws:
RestrictedAccessException - if the method is called when this object is part of live or compiled scene graph.

getPlaneT

public final void getPlaneT(Vector4f planeT)
Retrieves a copy of the plane equation used to generate the T coordinate.
Parameters:
planeT - the T coordinate plane equation
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

setPlaneR

public final void setPlaneR(Vector4f planeR)
Sets the R coordinate plane equation. This plane equation is used to generate the R coordinate in OBJECT_LINEAR and EYE_LINEAR texture generation modes.
Parameters:
planeR - plane equation for the R coordinate
Throws:
RestrictedAccessException - if the method is called when this object is part of live or compiled scene graph.

getPlaneR

public final void getPlaneR(Vector4f planeR)
Retrieves a copy of the plane equation used to generate the R coordinate.
Parameters:
planeR - the R coordinate plane equation
Throws:
CapabilityNotSetException - if appropriate capability is not set and this object is part of live or compiled scene graph

cloneNodeComponent

public NodeComponent cloneNodeComponent()
Creates a new TexCoordGeneration object. Called from a Leaf node's duplicateNode method.
Overrides:
cloneNodeComponent in class NodeComponent
Returns:
a duplicate of the TexCoordGeneration object.
See Also:
Node.duplicateNode(javax.media.j3d.Node, boolean), Node.cloneTree(), NodeComponent.setDuplicateOnCloneTree(boolean)

duplicateNodeComponent

public void duplicateNodeComponent(NodeComponent originalNodeComponent)
Copies the information found in originalNodeComponent to the current node. This routine is called as part of the cloneTree operation.
Overrides:
duplicateNodeComponent in class NodeComponent
Parameters:
originalNodeComponent - the node to duplicate.
See Also:
Node.cloneTree(), Node.duplicateNode(javax.media.j3d.Node, boolean), NodeComponent.setDuplicateOnCloneTree(boolean)