|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.media.j3d.SceneGraphObject
javax.media.j3d.NodeComponent
javax.media.j3d.Geometry
javax.media.j3d.GeometryArray
javax.media.j3d.IndexedGeometryArray
javax.media.j3d.IndexedGeometryStripArray
public abstract class IndexedGeometryStripArray
The IndexedGeometryStripArray object is an abstract class that is extended for a set of IndexedGeometryArray strip primitives. These include LINE_STRIP, TRIANGLE_STRIP, and TRIANGLE_FAN.
Field Summary |
---|
Fields inherited from class javax.media.j3d.Geometry |
---|
ALLOW_INTERSECT |
Constructor Summary | |
---|---|
IndexedGeometryStripArray(int vertexCount,
int vertexFormat,
int indexCount,
int[] stripIndexCounts)
Constructs an empty IndexedGeometryStripArray object with the specified number of vertices, vertex format, number of indices, and array of per-strip index counts. |
|
IndexedGeometryStripArray(int vertexCount,
int vertexFormat,
int texCoordSetCount,
int[] texCoordSetMap,
int indexCount,
int[] stripIndexCounts)
Constructs an empty IndexedGeometryStripArray object with the specified number of vertices, vertex format, number of texture coordinate sets, texture coordinate mapping array, number of indices, and array of per-strip index counts. |
|
IndexedGeometryStripArray(int vertexCount,
int vertexFormat,
int texCoordSetCount,
int[] texCoordSetMap,
int vertexAttrCount,
int[] vertexAttrSizes,
int indexCount,
int[] stripIndexCounts)
Constructs an empty IndexedGeometryStripArray 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, number of indices, and array of per-strip index counts. |
Method Summary | |
---|---|
int |
getNumStrips()
Get number of strips in the GeometryStripArray |
void |
getStripIndexCounts(int[] stripIndexCounts)
Gets a list of indexCounts for each strip. |
void |
setStripIndexCounts(int[] stripIndexCounts)
Sets the array of strip index counts. |
void |
setValidIndexCount(int validIndexCount)
This method is not supported for indexed geometry strip arrays. |
Methods inherited from class javax.media.j3d.NodeComponent |
---|
cloneNodeComponent, cloneNodeComponent, duplicateNodeComponent, duplicateNodeComponent, getDuplicateOnCloneTree, setDuplicateOnCloneTree |
Methods inherited from class javax.media.j3d.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 |
Constructor Detail |
---|
public IndexedGeometryStripArray(int vertexCount, int vertexFormat, int indexCount, int[] stripIndexCounts)
vertexCount
- see GeometryArray.GeometryArray(int,int)
for a description of this parameter.vertexFormat
- see GeometryArray.GeometryArray(int,int)
for a description of this parameter.indexCount
- see IndexedGeometryArray.IndexedGeometryArray(int,int,int)
for a description of this parameter.stripIndexCounts
- array that specifies
the count of the number of indices for each separate strip.
The length of this array is the number of separate strips.
The sum of the elements in this array defines the total number
of valid indexed vertices that are rendered (validIndexCount).
java.lang.IllegalArgumentException
- if
validIndexCount > indexCount
;GeometryArray.GeometryArray(int,int)
for more exceptions that can be thrownpublic IndexedGeometryStripArray(int vertexCount, int vertexFormat, int texCoordSetCount, int[] texCoordSetMap, int indexCount, int[] stripIndexCounts)
vertexCount
- see GeometryArray.GeometryArray(int,int,int,int[])
for a description of this parameter.vertexFormat
- see GeometryArray.GeometryArray(int,int,int,int[])
for a description of this parameter.texCoordSetCount
- see GeometryArray.GeometryArray(int,int,int,int[])
for a description of this parameter.texCoordSetMap
- see GeometryArray.GeometryArray(int,int,int,int[])
for a description of this parameter.indexCount
- see IndexedGeometryArray.IndexedGeometryArray(int,int,int,int[],int)
for a description of this parameter.stripIndexCounts
- array that specifies
the count of the number of indices for each separate strip.
The length of this array is the number of separate strips.
The sum of the elements in this array defines the total number
of valid indexed vertices that are rendered (validIndexCount).
java.lang.IllegalArgumentException
- if
validIndexCount > indexCount
;GeometryArray.GeometryArray(int,int,int,int[])
for more exceptions that can be thrownpublic IndexedGeometryStripArray(int vertexCount, int vertexFormat, int texCoordSetCount, int[] texCoordSetMap, int vertexAttrCount, int[] vertexAttrSizes, int indexCount, int[] stripIndexCounts)
vertexCount
- see GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for a description of this parameter.vertexFormat
- see GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for a description of this parameter.texCoordSetMap
- see GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for a description of this parameter.vertexAttrCount
- see GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for a description of this parameter.vertexAttrSizes
- see GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for a description of this parameter.indexCount
- see IndexedGeometryArray.IndexedGeometryArray(int,int,int,int[],int,int[],int)
for a description of this parameter.stripIndexCounts
- array that specifies
the count of the number of indices for each separate strip.
The length of this array is the number of separate strips.
The sum of the elements in this array defines the total number
of valid indexed vertices that are rendered (validIndexCount).
java.lang.IllegalArgumentException
- if
validIndexCount > indexCount
;GeometryArray.GeometryArray(int,int,int,int[],int,int[])
for more exceptions that can be thrownMethod Detail |
---|
public int getNumStrips()
public void setStripIndexCounts(int[] stripIndexCounts)
stripIndexCounts
- array that specifies
the count of the number of indices for each separate strip.
java.lang.IllegalArgumentException
- if
initialIndexIndex + validIndexCount > indexCount
public void getStripIndexCounts(int[] stripIndexCounts)
stripIndexCounts
- an array that will receive indexCountspublic void setValidIndexCount(int validIndexCount)
setValidIndexCount
in class IndexedGeometryArray
validIndexCount
- the new valid index count.
java.lang.UnsupportedOperationException
- this method is not supported
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |