| java.lang.Object javax.media.j3d.SceneGraphObject javax.media.j3d.NodeComponent javax.media.j3d.Geometry javax.media.j3d.GeometryArray javax.media.j3d.IndexedGeometryArray
All known Subclasses: javax.media.j3d.IndexedLineArray, javax.media.j3d.IndexedPointArray, javax.media.j3d.IndexedGeometryStripArray, javax.media.j3d.IndexedTriangleArray, javax.media.j3d.IndexedQuadArray,
IndexedGeometryArray | abstract public class IndexedGeometryArray extends GeometryArray (Code) | | The IndexedGeometryArray object contains separate integer arrays
that index into the arrays of positional coordinates, colors,
normals, texture coordinates, and vertex attributes.
These index arrays specify how
vertices are connected to form geometry primitives. This class is
extended to create the various indexed primitive types (e.g.,
lines, triangle strips, etc.).
|
Field Summary | |
final public static int | ALLOW_COLOR_INDEX_READ Specifies that this IndexedGeometryArray allows reading the array of
color indices. | final public static int | ALLOW_COLOR_INDEX_WRITE Specifies that this IndexedGeometryArray allows writing the array of
color indices. | final public static int | ALLOW_COORDINATE_INDEX_READ Specifies that this IndexedGeometryArray allows reading the array of
coordinate indices. | final public static int | ALLOW_COORDINATE_INDEX_WRITE Specifies that this IndexedGeometryArray allows writing the array of
coordinate indices. | final public static int | ALLOW_NORMAL_INDEX_READ Specifies that this IndexedGeometryArray allows reading the array of
normal indices. | final public static int | ALLOW_NORMAL_INDEX_WRITE Specifies that this IndexedGeometryArray allows writing the array of
normal indices. | final public static int | ALLOW_TEXCOORD_INDEX_READ Specifies that this IndexedGeometryArray allows reading the array of
texture coordinate indices. | final public static int | ALLOW_TEXCOORD_INDEX_WRITE Specifies that this IndexedGeometryArray allows writing the array of
texture coordinate indices. | final public static int | ALLOW_VERTEX_ATTR_INDEX_READ Specifies that this IndexedGeometryArray allows reading the array of
vertex attribute indices. | final public static int | ALLOW_VERTEX_ATTR_INDEX_WRITE Specifies that this IndexedGeometryArray allows writing the array of
vertex attribute indices. |
Constructor Summary | |
| IndexedGeometryArray() | public | IndexedGeometryArray(int vertexCount, int vertexFormat, int indexCount) Constructs an empty IndexedGeometryArray object with the specified
number of vertices, vertex format, and number of indices.
Defaults are used for all other parameters. | public | IndexedGeometryArray(int vertexCount, int vertexFormat, int texCoordSetCount, int[] texCoordSetMap, int indexCount) Constructs an empty IndexedGeometryArray object with the specified
number of vertices, vertex format, number of texture coordinate
sets, texture coordinate mapping array, and number of indices.
Defaults are used for all other parameters.
Parameters: vertexCount - see GeometryArray.GeometryArray(intintintint[])for a description of this parameter. Parameters: vertexFormat - see GeometryArray.GeometryArray(intintintint[])for a description of this parameter. Parameters: texCoordSetCount - see GeometryArray.GeometryArray(intintintint[])for a description of this parameter. Parameters: texCoordSetMap - see GeometryArray.GeometryArray(intintintint[])for a description of this parameter. Parameters: indexCount - the number of indices in this object. | public | IndexedGeometryArray(int vertexCount, int vertexFormat, int texCoordSetCount, int[] texCoordSetMap, int vertexAttrCount, int[] vertexAttrSizes, int indexCount) Constructs an empty IndexedGeometryArray object with the
specified number of vertices, vertex format, number of texture
coordinate sets, texture coordinate mapping array, vertex
attribute count, vertex attribute sizes array, and number of
indices.
Parameters: vertexCount - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexFormat - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: texCoordSetMap - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexAttrCount - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexAttrSizes - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: indexCount - the number of indices in this object. |
Method Summary | |
void | duplicateAttributes(NodeComponent originalNodeComponent, boolean forceDuplicate) Copies all node information from originalNodeComponent into
the current node. | public int | getColorIndex(int index) Retrieves the color index associated with the vertex at
the specified index for this object. | public void | getColorIndices(int index, int colorIndices) Retrieves the color indices associated with the vertices starting at
the specified index for this object. | public int[] | getCoordIndicesRef() | public int | getCoordinateIndex(int index) Retrieves the coordinate index associated with the vertex at
the specified index for this object. | public void | getCoordinateIndices(int index, int coordinateIndices) Retrieves the coordinate indices associated with the vertices starting at
the specified index for this object. | public int | getIndexCount() Gets number of indices for this IndexedGeometryArray. | public int | getInitialIndexIndex() Gets the initial index index for this IndexedGeometryArray object. | public int | getNormalIndex(int index) Retrieves the normal index associated with the vertex at
the specified index for this object. | public void | getNormalIndices(int index, int normalIndices) Retrieves the normal indices associated with the vertices starting at
the specified index for this object. | public int | getTextureCoordinateIndex(int index) | public int | getTextureCoordinateIndex(int texCoordSet, int index) Retrieves the texture coordinate index associated with the vertex at
the specified index in the specified texture coordinate set
for this object. | public void | getTextureCoordinateIndices(int index, int texCoordIndices) | public void | getTextureCoordinateIndices(int texCoordSet, int index, int texCoordIndices) Retrieves the texture coordinate indices associated with the vertices
starting at the specified index in the specified texture coordinate set
for this object. | public int | getValidIndexCount() Gets the valid index count for this IndexedGeometryArray
object. | public int | getVertexAttrIndex(int vertexAttrNum, int index) Retrieves the vertex attribute index associated with the vertex at
the specified index for the specified vertex attribute number
for this object. | public void | getVertexAttrIndices(int vertexAttrNum, int index, int[] vertexAttrIndices) Retrieves the vertex attribute indices associated with the vertices
starting at the specified index for the specified vertex attribute number
for this object. | public void | setColorIndex(int index, int colorIndex) Sets the color index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: colorIndex - the new color index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified colorIndex is out of range. | public void | setColorIndices(int index, int colorIndices) Sets the color indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: colorIndices - an array of color indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thecolorIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. | public void | setCoordIndicesRef(int coordIndices) Sets the coordinate indices array reference to the specified array.
If the coordinate indices array reference is null, the entire
geometry array object is treated as if it were null--any
Shape3D or Morph node that uses this geometry array will not be drawn.
Parameters: coordIndices - an array of indices to which a referencewill be set. exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: IllegalStateException - if the data mode for this geometryarray object is not BY_REFERENCE_INDICES . exception: ArrayIndexOutOfBoundsException - if any element of thecoordIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. | public void | setCoordinateIndex(int index, int coordinateIndex) Sets the coordinate index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: coordinateIndex - the new coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified coordinateIndex is out of range. | public void | setCoordinateIndices(int index, int coordinateIndices) Sets the coordinate indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: coordinateIndices - an array of coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thecoordinateIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. | public void | setInitialColorIndex(int initialColorIndex) This method is not supported for indexed geometry arrays. | public void | setInitialCoordIndex(int initialCoordIndex) This method is not supported for indexed geometry arrays. | public void | setInitialIndexIndex(int initialIndexIndex) Sets the initial index index for this IndexedGeometryArray object.
This index specifies the first index within this indexed geometry
array that is actually used in rendering or other operations
such as picking and collision. | public void | setInitialNormalIndex(int initialNormalIndex) This method is not supported for indexed geometry arrays. | public void | setInitialTexCoordIndex(int texCoordSet, int initialTexCoordIndex) This method is not supported for indexed geometry arrays. | public void | setInitialVertexAttrIndex(int vertexAttrNum, int initialVertexAttrIndex) This method is not supported for indexed geometry arrays. | public void | setInitialVertexIndex(int initialVertexIndex) This method is not supported for indexed geometry arrays. | public void | setNormalIndex(int index, int normalIndex) Sets the normal index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: normalIndex - the new normal index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified normalIndex is out of range. | public void | setNormalIndices(int index, int normalIndices) Sets the normal indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: normalIndices - an array of normal indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thenormalIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. | public void | setTextureCoordinateIndex(int index, int texCoordIndex) | public void | setTextureCoordinateIndex(int texCoordSet, int index, int texCoordIndex) Sets the texture coordinate index associated with the vertex at
the specified index in the specified texture coordinate set
for this object.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index Parameters: texCoordIndex - the new texture coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified texCoordIndex is out of range. | public void | setTextureCoordinateIndices(int index, int texCoordIndices) | public void | setTextureCoordinateIndices(int texCoordSet, int index, int texCoordIndices) Sets the texture coordinate indices associated with the vertices
starting at the specified index in the specified texture coordinate set
for this object.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index Parameters: texCoordIndices - an array of texture coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: ArrayIndexOutOfBoundsException - if any element of thetexCoordIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. | public void | setValidIndexCount(int validIndexCount) Sets the valid index count for this IndexedGeometryArray object. | public void | setValidVertexCount(int validVertexCount) This method is not supported for indexed geometry arrays. | public void | setVertexAttrIndex(int vertexAttrNum, int index, int vertexAttrIndex) Sets the vertex attribute index associated with the vertex at
the specified index for the specified vertex attribute number
for this object.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index Parameters: vertexAttrIndex - the new vertex attribute index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified vertexAttrIndex is out of range. | public void | setVertexAttrIndices(int vertexAttrNum, int index, int[] vertexAttrIndices) Sets the vertex attribute indices associated with the vertices
starting at the specified index for the specified vertex attribute number
for this object.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index Parameters: vertexAttrIndices - an array of vertex attribute indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: ArrayIndexOutOfBoundsException - if any element of thevertexAttrIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. |
ALLOW_COLOR_INDEX_READ | final public static int ALLOW_COLOR_INDEX_READ(Code) | | Specifies that this IndexedGeometryArray allows reading the array of
color indices.
|
ALLOW_COLOR_INDEX_WRITE | final public static int ALLOW_COLOR_INDEX_WRITE(Code) | | Specifies that this IndexedGeometryArray allows writing the array of
color indices.
|
ALLOW_COORDINATE_INDEX_READ | final public static int ALLOW_COORDINATE_INDEX_READ(Code) | | Specifies that this IndexedGeometryArray allows reading the array of
coordinate indices.
|
ALLOW_COORDINATE_INDEX_WRITE | final public static int ALLOW_COORDINATE_INDEX_WRITE(Code) | | Specifies that this IndexedGeometryArray allows writing the array of
coordinate indices.
|
ALLOW_NORMAL_INDEX_READ | final public static int ALLOW_NORMAL_INDEX_READ(Code) | | Specifies that this IndexedGeometryArray allows reading the array of
normal indices.
|
ALLOW_NORMAL_INDEX_WRITE | final public static int ALLOW_NORMAL_INDEX_WRITE(Code) | | Specifies that this IndexedGeometryArray allows writing the array of
normal indices.
|
ALLOW_TEXCOORD_INDEX_READ | final public static int ALLOW_TEXCOORD_INDEX_READ(Code) | | Specifies that this IndexedGeometryArray allows reading the array of
texture coordinate indices.
|
ALLOW_TEXCOORD_INDEX_WRITE | final public static int ALLOW_TEXCOORD_INDEX_WRITE(Code) | | Specifies that this IndexedGeometryArray allows writing the array of
texture coordinate indices.
|
ALLOW_VERTEX_ATTR_INDEX_READ | final public static int ALLOW_VERTEX_ATTR_INDEX_READ(Code) | | Specifies that this IndexedGeometryArray allows reading the array of
vertex attribute indices.
since: Java 3D 1.4 |
ALLOW_VERTEX_ATTR_INDEX_WRITE | final public static int ALLOW_VERTEX_ATTR_INDEX_WRITE(Code) | | Specifies that this IndexedGeometryArray allows writing the array of
vertex attribute indices.
since: Java 3D 1.4 |
IndexedGeometryArray | IndexedGeometryArray()(Code) | | |
IndexedGeometryArray | public IndexedGeometryArray(int vertexCount, int vertexFormat, int indexCount)(Code) | | Constructs an empty IndexedGeometryArray object with the specified
number of vertices, vertex format, and number of indices.
Defaults are used for all other parameters. The default values
are as follows:
validIndexCount : indexCount
initialIndexIndex : 0
all index array values : 0
Parameters: vertexCount - see GeometryArray.GeometryArray(intint)for a description of this parameter. Parameters: vertexFormat - see GeometryArray.GeometryArray(intint)for a description of this parameter. Parameters: indexCount - the number of indices in this object. Thiscount is the maximum number of vertices that will be rendered. exception: IllegalArgumentException - if indexCount < 0 ; See GeometryArray.GeometryArray(intint)for more exceptions that can be thrown |
IndexedGeometryArray | public IndexedGeometryArray(int vertexCount, int vertexFormat, int texCoordSetCount, int[] texCoordSetMap, int vertexAttrCount, int[] vertexAttrSizes, int indexCount)(Code) | | Constructs an empty IndexedGeometryArray object with the
specified number of vertices, vertex format, number of texture
coordinate sets, texture coordinate mapping array, vertex
attribute count, vertex attribute sizes array, and number of
indices.
Parameters: vertexCount - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexFormat - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: texCoordSetMap - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexAttrCount - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: vertexAttrSizes - see GeometryArray.GeometryArray(intintintint[]intint[])for a description of this parameter. Parameters: indexCount - the number of indices in this object. Thiscount is the maximum number of vertices that will be rendered. exception: IllegalArgumentException - if indexCount < 0 ; See GeometryArray.GeometryArray(intintintint[]intint[])for more exceptions that can be thrown since: Java 3D 1.4 |
duplicateAttributes | void duplicateAttributes(NodeComponent originalNodeComponent, boolean forceDuplicate)(Code) | | Copies all node information from originalNodeComponent into
the current node. This method is called from the
duplicateNode method. This routine does
the actual duplication of all "local data" (any data defined in
this object).
Parameters: originalNodeComponent - the original node to duplicate. Parameters: forceDuplicate - when set to true , causes theduplicateOnCloneTree flag to be ignored. Whenfalse , the value of each node'sduplicateOnCloneTree variable determines whetherNodeComponent data is duplicated or copied. See Also: Node.cloneTree See Also: NodeComponent.setDuplicateOnCloneTree |
getColorIndex | public int getColorIndex(int index)(Code) | | Retrieves the color index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index the color index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
getColorIndices | public void getColorIndices(int index, int colorIndices)(Code) | | Retrieves the color indices associated with the vertices starting at
the specified index for this object. The color indicies are
copied into the specified array. The array must be large enough
to hold all of the indices.
Parameters: index - the vertex index Parameters: colorIndices - array that will receive the color indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
getCoordIndicesRef | public int[] getCoordIndicesRef()(Code) | | Returns a reference to the coordinate indices associated with
the vertices
the coordinate indices array exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: IllegalStateException - if the data mode for this geometryarray object is not BY_REFERENCE_INDICES . since: Java 3D 1.5 |
getCoordinateIndex | public int getCoordinateIndex(int index)(Code) | | Retrieves the coordinate index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index the coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: IllegalStateException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES . |
getCoordinateIndices | public void getCoordinateIndices(int index, int coordinateIndices)(Code) | | Retrieves the coordinate indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: coordinateIndices - array that will receive the coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: IllegalStateException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES . |
getIndexCount | public int getIndexCount()(Code) | | Gets number of indices for this IndexedGeometryArray.
indexCount the number of indices |
getInitialIndexIndex | public int getInitialIndexIndex()(Code) | | Gets the initial index index for this IndexedGeometryArray object.
the current initial index index exception: CapabilityNotSetException - if the appropriate capability isnot set and this object is part of a live or compiled scene graph since: Java 3D 1.3 |
getNormalIndex | public int getNormalIndex(int index)(Code) | | Retrieves the normal index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index the normal index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
getNormalIndices | public void getNormalIndices(int index, int normalIndices)(Code) | | Retrieves the normal indices associated with the vertices starting at
the specified index for this object. The normal indicies are
copied into the specified array. The array must be large enough
to hold all of the normal indicies.
Parameters: index - the vertex index Parameters: normalIndices - array that will receive the normal indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
getTextureCoordinateIndex | public int getTextureCoordinateIndex(int index)(Code) | | |
getTextureCoordinateIndex | public int getTextureCoordinateIndex(int texCoordSet, int index)(Code) | | Retrieves the texture coordinate index associated with the vertex at
the specified index in the specified texture coordinate set
for this object.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index the texture coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.2 |
getTextureCoordinateIndices | public void getTextureCoordinateIndices(int index, int texCoordIndices)(Code) | | |
getTextureCoordinateIndices | public void getTextureCoordinateIndices(int texCoordSet, int index, int texCoordIndices)(Code) | | Retrieves the texture coordinate indices associated with the vertices
starting at the specified index in the specified texture coordinate set
for this object. The texture
coordinate indices are copied into the specified array. The array
must be large enough to hold all of the indices.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index Parameters: texCoordIndices - array that will receive the texture coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.2 |
getValidIndexCount | public int getValidIndexCount()(Code) | | Gets the valid index count for this IndexedGeometryArray
object. For geometry strip primitives (subclasses of
IndexedGeometryStripArray), the valid index count is defined
to be the sum of the stripIndexCounts array.
the current valid index count exception: CapabilityNotSetException - if the appropriate capability isnot set and this object is part of a live or compiled scene graph since: Java 3D 1.3 |
getVertexAttrIndex | public int getVertexAttrIndex(int vertexAttrNum, int index)(Code) | | Retrieves the vertex attribute index associated with the vertex at
the specified index for the specified vertex attribute number
for this object.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index the vertex attribute index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.4 |
getVertexAttrIndices | public void getVertexAttrIndices(int vertexAttrNum, int index, int[] vertexAttrIndices)(Code) | | Retrieves the vertex attribute indices associated with the vertices
starting at the specified index for the specified vertex attribute number
for this object. The vertex attribute indices
are copied into the specified array. The array
must be large enough to hold all of the indices.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index Parameters: vertexAttrIndices - array that will receive the vertex attribute indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.4 |
setColorIndex | public void setColorIndex(int index, int colorIndex)(Code) | | Sets the color index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: colorIndex - the new color index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified colorIndex is out of range. ThecolorIndex is out of range if it is less than 0 or isgreater than or equal to the number of vertices actuallydefined for the color array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
setColorIndices | public void setColorIndices(int index, int colorIndices)(Code) | | Sets the color indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: colorIndices - an array of color indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thecolorIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the color array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
setCoordIndicesRef | public void setCoordIndicesRef(int coordIndices)(Code) | | Sets the coordinate indices array reference to the specified array.
If the coordinate indices array reference is null, the entire
geometry array object is treated as if it were null--any
Shape3D or Morph node that uses this geometry array will not be drawn.
Parameters: coordIndices - an array of indices to which a referencewill be set. exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: IllegalStateException - if the data mode for this geometryarray object is not BY_REFERENCE_INDICES . exception: ArrayIndexOutOfBoundsException - if any element of thecoordIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the coordinate array. exception: ArrayIndexOutOfBoundsException - ifcoordIndices.length < (initialIndexIndex + validIndexCount) . since: Java 3D 1.5 |
setCoordinateIndex | public void setCoordinateIndex(int index, int coordinateIndex)(Code) | | Sets the coordinate index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: coordinateIndex - the new coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified coordinateIndex is out of range. ThecoordinateIndex is out of range if it is less than 0 or isgreater than or equal to the number of vertices actuallydefined for the coordinate array. exception: IllegalStateException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES . |
setCoordinateIndices | public void setCoordinateIndices(int index, int coordinateIndices)(Code) | | Sets the coordinate indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: coordinateIndices - an array of coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thecoordinateIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the coordinate array. exception: IllegalStateException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES . |
setInitialColorIndex | public void setInitialColorIndex(int initialColorIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setInitialCoordIndex | public void setInitialCoordIndex(int initialCoordIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setInitialIndexIndex | public void setInitialIndexIndex(int initialIndexIndex)(Code) | | Sets the initial index index for this IndexedGeometryArray object.
This index specifies the first index within this indexed geometry
array that is actually used in rendering or other operations
such as picking and collision. This attribute is initialized
to 0.
Parameters: initialIndexIndex - the new initial index index. exception: CapabilityNotSetException - if the appropriate capability isnot set and this object is part of a live or compiled scene graph exception: IllegalArgumentException - if either of the following is true:initialIndexIndex < 0 , or
initialIndexIndex + validIndexCount > indexCount
exception: ArrayIndexOutOfBoundsException - if any element in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] in the index array associated with any of the enabled vertexcomponents (coord, color, normal, texcoord) is out of range.An element is out of range if it is less than 0 or is greaterthan or equal to the number of vertices actually defined forthe particular component's array. exception: ArrayIndexOutOfBoundsException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES andcoordIndices.length < (initialIndexIndex + validIndexCount) . since: Java 3D 1.3 |
setInitialNormalIndex | public void setInitialNormalIndex(int initialNormalIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setInitialTexCoordIndex | public void setInitialTexCoordIndex(int texCoordSet, int initialTexCoordIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setInitialVertexAttrIndex | public void setInitialVertexAttrIndex(int vertexAttrNum, int initialVertexAttrIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.4 |
setInitialVertexIndex | public void setInitialVertexIndex(int initialVertexIndex)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
The initialIndexIndex attribute can be used to set the starting
index within the index arrays.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setNormalIndex | public void setNormalIndex(int index, int normalIndex)(Code) | | Sets the normal index associated with the vertex at
the specified index for this object.
Parameters: index - the vertex index Parameters: normalIndex - the new normal index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified normalIndex is out of range. ThenormalIndex is out of range if it is less than 0 or isgreater than or equal to the number of vertices actuallydefined for the normal array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
setNormalIndices | public void setNormalIndices(int index, int normalIndices)(Code) | | Sets the normal indices associated with the vertices starting at
the specified index for this object.
Parameters: index - the vertex index Parameters: normalIndices - an array of normal indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if index is less than 0or is greater than or equal to indexCount exception: ArrayIndexOutOfBoundsException - if any element of thenormalIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the normal array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . |
setTextureCoordinateIndex | public void setTextureCoordinateIndex(int index, int texCoordIndex)(Code) | | |
setTextureCoordinateIndex | public void setTextureCoordinateIndex(int texCoordSet, int index, int texCoordIndex)(Code) | | Sets the texture coordinate index associated with the vertex at
the specified index in the specified texture coordinate set
for this object.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index Parameters: texCoordIndex - the new texture coordinate index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified texCoordIndex is out of range. ThetexCoordIndex is out of range if it is less than 0 or isgreater than or equal to the number of vertices actuallydefined for the texture coordinate array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.2 |
setTextureCoordinateIndices | public void setTextureCoordinateIndices(int index, int texCoordIndices)(Code) | | |
setTextureCoordinateIndices | public void setTextureCoordinateIndices(int texCoordSet, int index, int texCoordIndices)(Code) | | Sets the texture coordinate indices associated with the vertices
starting at the specified index in the specified texture coordinate set
for this object.
Parameters: texCoordSet - texture coordinate set in this geometry array Parameters: index - the vertex index Parameters: texCoordIndices - an array of texture coordinate indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if neither of theTEXTURE_COORDINATE bits are set in thevertexFormat or if the index ortexCoordSet is out of range. exception: ArrayIndexOutOfBoundsException - if any element of thetexCoordIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the texture coordinate array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.2 |
setValidIndexCount | public void setValidIndexCount(int validIndexCount)(Code) | | Sets the valid index count for this IndexedGeometryArray object.
This count specifies the number of indexed vertices actually used
in rendering or other operations such as picking and collision.
This attribute is initialized to indexCount .
Parameters: validIndexCount - the new valid index count. exception: CapabilityNotSetException - if the appropriate capability isnot set and this object is part of a live or compiled scene graph exception: IllegalArgumentException - if either of the following is true:validIndexCount < 0 , or
initialIndexIndex + validIndexCount > indexCount
exception: ArrayIndexOutOfBoundsException - if any element in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] in the index array associated with any of the enabled vertexcomponents (coord, color, normal, texcoord) is out of range.An element is out of range if it is less than 0 or is greaterthan or equal to the number of vertices actually defined forthe particular component's array. exception: ArrayIndexOutOfBoundsException - if the data mode for this geometryarray object is BY_REFERENCE_INDICES andcoordIndices.length < (initialIndexIndex + validIndexCount) . since: Java 3D 1.3 |
setValidVertexCount | public void setValidVertexCount(int validVertexCount)(Code) | | This method is not supported for indexed geometry arrays.
Indexed primitives use an array of indices to determine how
to access the vertex array.
The validIndexCount attribute can be used to set the number of
valid indexed vertices rendered.
exception: UnsupportedOperationException - this method is not supported since: Java 3D 1.3 |
setVertexAttrIndex | public void setVertexAttrIndex(int vertexAttrNum, int index, int vertexAttrIndex)(Code) | | Sets the vertex attribute index associated with the vertex at
the specified index for the specified vertex attribute number
for this object.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index Parameters: vertexAttrIndex - the new vertex attribute index exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: ArrayIndexOutOfBoundsException - if index is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] and the specified vertexAttrIndex is out of range. ThevertexAttrIndex is out of range if it is less than 0 or isgreater than or equal to the number of vertices actuallydefined for the vertex attribute array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.4 |
setVertexAttrIndices | public void setVertexAttrIndices(int vertexAttrNum, int index, int[] vertexAttrIndices)(Code) | | Sets the vertex attribute indices associated with the vertices
starting at the specified index for the specified vertex attribute number
for this object.
Parameters: vertexAttrNum - vertex attribute number in this geometry array Parameters: index - the vertex index Parameters: vertexAttrIndices - an array of vertex attribute indices exception: CapabilityNotSetException - if appropriate capability isnot set and this object is part of live or compiled scene graph exception: ArrayIndexOutOfBoundsException - if the index orvertexAttrNum is out of range. exception: ArrayIndexOutOfBoundsException - if any element of thevertexAttrIndices array whose destination position is in the range[initialIndexIndex, initialIndexIndex+validIndexCount-1] is out of range. An element is out of range if it is less than 0or is greater than or equal to the number of vertices actuallydefined for the vertex attribute array. exception: NullPointerException - if the USE_COORD_INDEX_ONLY bit is set in vertexFormat . since: Java 3D 1.4 |
Methods inherited from javax.media.j3d.GeometryArray | void duplicateAttributes(NodeComponent originalNodeComponent, boolean forceDuplicate)(Code)(Java Doc) public void getColor(int index, float color)(Code)(Java Doc) public void getColor(int index, byte color)(Code)(Java Doc) public void getColor(int index, Color3f color)(Code)(Java Doc) public void getColor(int index, Color4f color)(Code)(Java Doc) public void getColor(int index, Color3b color)(Code)(Java Doc) public void getColor(int index, Color4b color)(Code)(Java Doc) public Color3b[] getColorRef3b()(Code)(Java Doc) public Color3f[] getColorRef3f()(Code)(Java Doc) public Color4b[] getColorRef4b()(Code)(Java Doc) public Color4f[] getColorRef4f()(Code)(Java Doc) public J3DBuffer getColorRefBuffer()(Code)(Java Doc) public byte[] getColorRefByte()(Code)(Java Doc) public float[] getColorRefFloat()(Code)(Java Doc) public void getColors(int index, float colors)(Code)(Java Doc) public void getColors(int index, byte colors)(Code)(Java Doc) public void getColors(int index, Color3f colors)(Code)(Java Doc) public void getColors(int index, Color4f colors)(Code)(Java Doc) public void getColors(int index, Color3b colors)(Code)(Java Doc) public void getColors(int index, Color4b colors)(Code)(Java Doc) public Point3d[] getCoordRef3d()(Code)(Java Doc) public Point3f[] getCoordRef3f()(Code)(Java Doc) public J3DBuffer getCoordRefBuffer()(Code)(Java Doc) public double[] getCoordRefDouble()(Code)(Java Doc) public float[] getCoordRefFloat()(Code)(Java Doc) public void getCoordinate(int index, float coordinate)(Code)(Java Doc) public void getCoordinate(int index, double coordinate)(Code)(Java Doc) public void getCoordinate(int index, Point3f coordinate)(Code)(Java Doc) public void getCoordinate(int index, Point3d coordinate)(Code)(Java Doc) public void getCoordinates(int index, float coordinates)(Code)(Java Doc) public void getCoordinates(int index, double coordinates)(Code)(Java Doc) public void getCoordinates(int index, Point3f coordinates)(Code)(Java Doc) public void getCoordinates(int index, Point3d coordinates)(Code)(Java Doc) public int getInitialColorIndex()(Code)(Java Doc) public int getInitialCoordIndex()(Code)(Java Doc) public int getInitialNormalIndex()(Code)(Java Doc) public int getInitialTexCoordIndex(int texCoordSet)(Code)(Java Doc) public int getInitialVertexAttrIndex(int vertexAttrNum)(Code)(Java Doc) public int getInitialVertexIndex()(Code)(Java Doc) public J3DBuffer getInterleavedVertexBuffer()(Code)(Java Doc) public float[] getInterleavedVertices()(Code)(Java Doc) public void getNormal(int index, float normal)(Code)(Java Doc) public void getNormal(int index, Vector3f normal)(Code)(Java Doc) public Vector3f[] getNormalRef3f()(Code)(Java Doc) public J3DBuffer getNormalRefBuffer()(Code)(Java Doc) public float[] getNormalRefFloat()(Code)(Java Doc) public void getNormals(int index, float normals)(Code)(Java Doc) public void getNormals(int index, Vector3f normals)(Code)(Java Doc) public TexCoord2f[] getTexCoordRef2f(int texCoordSet)(Code)(Java Doc) public TexCoord3f[] getTexCoordRef3f(int texCoordSet)(Code)(Java Doc) public J3DBuffer getTexCoordRefBuffer(int texCoordSet)(Code)(Java Doc) public float[] getTexCoordRefFloat(int texCoordSet)(Code)(Java Doc) public int getTexCoordSetCount()(Code)(Java Doc) public void getTexCoordSetMap(int[] texCoordSetMap)(Code)(Java Doc) public int getTexCoordSetMapLength()(Code)(Java Doc) public void getTextureCoordinate(int index, float texCoord)(Code)(Java Doc) public void getTextureCoordinate(int texCoordSet, int index, float texCoord)(Code)(Java Doc) public void getTextureCoordinate(int index, Point2f texCoord)(Code)(Java Doc) public void getTextureCoordinate(int texCoordSet, int index, TexCoord2f texCoord)(Code)(Java Doc) public void getTextureCoordinate(int index, Point3f texCoord)(Code)(Java Doc) public void getTextureCoordinate(int texCoordSet, int index, TexCoord3f texCoord)(Code)(Java Doc) public void getTextureCoordinate(int texCoordSet, int index, TexCoord4f texCoord)(Code)(Java Doc) public void getTextureCoordinates(int index, float texCoords)(Code)(Java Doc) public void getTextureCoordinates(int texCoordSet, int index, float texCoords)(Code)(Java Doc) public void getTextureCoordinates(int index, Point2f texCoords)(Code)(Java Doc) public void getTextureCoordinates(int texCoordSet, int index, TexCoord2f texCoords)(Code)(Java Doc) public void getTextureCoordinates(int index, Point3f texCoords)(Code)(Java Doc) public void getTextureCoordinates(int texCoordSet, int index, TexCoord3f texCoords)(Code)(Java Doc) public void getTextureCoordinates(int texCoordSet, int index, TexCoord4f texCoords)(Code)(Java Doc) public int getValidVertexCount()(Code)(Java Doc) public void getVertexAttr(int vertexAttrNum, int index, float[] vertexAttr)(Code)(Java Doc) public void getVertexAttr(int vertexAttrNum, int index, Point2f vertexAttr)(Code)(Java Doc) public void getVertexAttr(int vertexAttrNum, int index, Point3f vertexAttr)(Code)(Java Doc) public void getVertexAttr(int vertexAttrNum, int index, Point4f vertexAttr)(Code)(Java Doc) public int getVertexAttrCount()(Code)(Java Doc) public J3DBuffer getVertexAttrRefBuffer(int vertexAttrNum)(Code)(Java Doc) public float[] getVertexAttrRefFloat(int vertexAttrNum)(Code)(Java Doc) public void getVertexAttrSizes(int[] vertexAttrSizes)(Code)(Java Doc) public void getVertexAttrs(int vertexAttrNum, int index, float[] vertexAttrs)(Code)(Java Doc) public void getVertexAttrs(int vertexAttrNum, int index, Point2f[] vertexAttrs)(Code)(Java Doc) public void getVertexAttrs(int vertexAttrNum, int index, Point3f[] vertexAttrs)(Code)(Java Doc) public void getVertexAttrs(int vertexAttrNum, int index, Point4f[] vertexAttrs)(Code)(Java Doc) public int getVertexCount()(Code)(Java Doc) public int getVertexFormat()(Code)(Java Doc) public void setColor(int index, float color)(Code)(Java Doc) public void setColor(int index, byte color)(Code)(Java Doc) public void setColor(int index, Color3f color)(Code)(Java Doc) public void setColor(int index, Color4f color)(Code)(Java Doc) public void setColor(int index, Color3b color)(Code)(Java Doc) public void setColor(int index, Color4b color)(Code)(Java Doc) public void setColorRef3b(Color3b[] colors)(Code)(Java Doc) public void setColorRef3f(Color3f[] colors)(Code)(Java Doc) public void setColorRef4b(Color4b[] colors)(Code)(Java Doc) public void setColorRef4f(Color4f[] colors)(Code)(Java Doc) public void setColorRefBuffer(J3DBuffer colors)(Code)(Java Doc) public void setColorRefByte(byte[] colors)(Code)(Java Doc) public void setColorRefFloat(float[] colors)(Code)(Java Doc) public void setColors(int index, float colors)(Code)(Java Doc) public void setColors(int index, byte colors)(Code)(Java Doc) public void setColors(int index, Color3f colors)(Code)(Java Doc) public void setColors(int index, Color4f colors)(Code)(Java Doc) public void setColors(int index, Color3b colors)(Code)(Java Doc) public void setColors(int index, Color4b colors)(Code)(Java Doc) public void setColors(int index, float colors, int start, int length)(Code)(Java Doc) public void setColors(int index, byte colors, int start, int length)(Code)(Java Doc) public void setColors(int index, Color3f colors, int start, int length)(Code)(Java Doc) public void setColors(int index, Color4f colors, int start, int length)(Code)(Java Doc) public void setColors(int index, Color3b colors, int start, int length)(Code)(Java Doc) public void setColors(int index, Color4b colors, int start, int length)(Code)(Java Doc) public void setCoordRef3d(Point3d[] coords)(Code)(Java Doc) public void setCoordRef3f(Point3f[] coords)(Code)(Java Doc) public void setCoordRefBuffer(J3DBuffer coords)(Code)(Java Doc) public void setCoordRefDouble(double[] coords)(Code)(Java Doc) public void setCoordRefFloat(float[] coords)(Code)(Java Doc) public void setCoordinate(int index, float coordinate)(Code)(Java Doc) public void setCoordinate(int index, double coordinate)(Code)(Java Doc) public void setCoordinate(int index, Point3f coordinate)(Code)(Java Doc) public void setCoordinate(int index, Point3d coordinate)(Code)(Java Doc) public void setCoordinates(int index, float coordinates)(Code)(Java Doc) public void setCoordinates(int index, double coordinates)(Code)(Java Doc) public void setCoordinates(int index, Point3f coordinates)(Code)(Java Doc) public void setCoordinates(int index, Point3d coordinates)(Code)(Java Doc) public void setCoordinates(int index, float coordinates, int start, int length)(Code)(Java Doc) public void setCoordinates(int index, double coordinates, int start, int length)(Code)(Java Doc) public void setCoordinates(int index, Point3f coordinates, int start, int length)(Code)(Java Doc) public void setCoordinates(int index, Point3d coordinates, int start, int length)(Code)(Java Doc) public void setInitialColorIndex(int initialColorIndex)(Code)(Java Doc) public void setInitialCoordIndex(int initialCoordIndex)(Code)(Java Doc) public void setInitialNormalIndex(int initialNormalIndex)(Code)(Java Doc) public void setInitialTexCoordIndex(int texCoordSet, int initialTexCoordIndex)(Code)(Java Doc) public void setInitialVertexAttrIndex(int vertexAttrNum, int initialVertexAttrIndex)(Code)(Java Doc) public void setInitialVertexIndex(int initialVertexIndex)(Code)(Java Doc) public void setInterleavedVertexBuffer(J3DBuffer vertexData)(Code)(Java Doc) public void setInterleavedVertices(float[] vertexData)(Code)(Java Doc) public void setNormal(int index, float normal)(Code)(Java Doc) public void setNormal(int index, Vector3f normal)(Code)(Java Doc) public void setNormalRef3f(Vector3f[] normals)(Code)(Java Doc) public void setNormalRefBuffer(J3DBuffer normals)(Code)(Java Doc) public void setNormalRefFloat(float[] normals)(Code)(Java Doc) public void setNormals(int index, float normals)(Code)(Java Doc) public void setNormals(int index, Vector3f normals)(Code)(Java Doc) public void setNormals(int index, float normals, int start, int length)(Code)(Java Doc) public void setNormals(int index, Vector3f normals, int start, int length)(Code)(Java Doc) public void setTexCoordRef2f(int texCoordSet, TexCoord2f[] texCoords)(Code)(Java Doc) public void setTexCoordRef3f(int texCoordSet, TexCoord3f[] texCoords)(Code)(Java Doc) public void setTexCoordRefBuffer(int texCoordSet, J3DBuffer texCoords)(Code)(Java Doc) public void setTexCoordRefFloat(int texCoordSet, float[] texCoords)(Code)(Java Doc) public void setTextureCoordinate(int index, float texCoord)(Code)(Java Doc) public void setTextureCoordinate(int texCoordSet, int index, float texCoord)(Code)(Java Doc) public void setTextureCoordinate(int index, Point2f texCoord)(Code)(Java Doc) public void setTextureCoordinate(int texCoordSet, int index, TexCoord2f texCoord)(Code)(Java Doc) public void setTextureCoordinate(int index, Point3f texCoord)(Code)(Java Doc) public void setTextureCoordinate(int texCoordSet, int index, TexCoord3f texCoord)(Code)(Java Doc) public void setTextureCoordinate(int texCoordSet, int index, TexCoord4f texCoord)(Code)(Java Doc) public void setTextureCoordinates(int index, float texCoords)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, float texCoords)(Code)(Java Doc) public void setTextureCoordinates(int index, Point2f texCoords)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord2f texCoords)(Code)(Java Doc) public void setTextureCoordinates(int index, Point3f texCoords)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord3f texCoords)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord4f texCoords)(Code)(Java Doc) public void setTextureCoordinates(int index, float texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, float texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int index, Point2f texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord2f texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int index, Point3f texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord3f texCoords, int start, int length)(Code)(Java Doc) public void setTextureCoordinates(int texCoordSet, int index, TexCoord4f texCoords, int start, int length)(Code)(Java Doc) public void setValidVertexCount(int validVertexCount)(Code)(Java Doc) public void setVertexAttr(int vertexAttrNum, int index, float[] vertexAttr)(Code)(Java Doc) public void setVertexAttr(int vertexAttrNum, int index, Point2f vertexAttr)(Code)(Java Doc) public void setVertexAttr(int vertexAttrNum, int index, Point3f vertexAttr)(Code)(Java Doc) public void setVertexAttr(int vertexAttrNum, int index, Point4f vertexAttr)(Code)(Java Doc) public void setVertexAttrRefBuffer(int vertexAttrNum, J3DBuffer vertexAttrs)(Code)(Java Doc) public void setVertexAttrRefFloat(int vertexAttrNum, float[] vertexAttrs)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, float[] vertexAttrs)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point2f[] vertexAttrs)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point3f[] vertexAttrs)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point4f[] vertexAttrs)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, float[] vertexAttrs, int start, int length)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point2f[] vertexAttrs, int start, int length)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point3f[] vertexAttrs, int start, int length)(Code)(Java Doc) public void setVertexAttrs(int vertexAttrNum, int index, Point4f[] vertexAttrs, int start, int length)(Code)(Java Doc) public void updateData(GeometryUpdater updater)(Code)(Java Doc)
|
Fields inherited from javax.media.j3d.Geometry | final public static int ALLOW_INTERSECT(Code)(Java Doc)
|
Fields inherited from javax.media.j3d.NodeComponent | boolean forceDuplicate(Code)(Java Doc)
|
|
|