Uses of Class
com.jme.scene.TexCoords

Packages that use TexCoords
com.jme.scene   
com.jme.scene.lod   
 

Uses of TexCoords in com.jme.scene
 

Fields in com.jme.scene with type parameters of type TexCoords
protected  java.util.ArrayList<TexCoords> Geometry.texBuf
          The geometry's per Texture per vertex texture coordinate information.
 

Methods in com.jme.scene that return TexCoords
static TexCoords TexCoords.ensureSize(TexCoords tc, int vertexCount, int perVert)
          Check an incoming TexCoords object for null and correct size.
 TexCoords Geometry.getTextureCoords(int textureUnit)
          getTextureAsFloatBuffer retrieves the texture buffer of a given texture unit.
 TexCoords SharedMesh.getTextureCoords(int textureUnit)
          getTextureAsFloatBuffer retrieves the texture buffer of a given texture unit.
static TexCoords TexCoords.makeNew(float[] coords)
           
static TexCoords TexCoords.makeNew(Vector2f[] coords)
           
static TexCoords TexCoords.makeNew(Vector3f[] coords)
           
 

Methods in com.jme.scene that return types with arguments of type TexCoords
 java.util.ArrayList<TexCoords> Geometry.getTextureCoords()
          getTextureBuffers retrieves this geometry's texture information contained within a float buffer array.
 java.util.ArrayList<TexCoords> SharedMesh.getTextureCoords()
          getTextureBuffers retrieves the target geometry's texture information contained within a float buffer array.
 

Methods in com.jme.scene with parameters of type TexCoords
 void Geometry.addTextureCoordinates(TexCoords textureCoords)
           
 void Geometry.addTextureCoordinates(TexCoords textureCoords, int coordSize)
           
static TexCoords TexCoords.ensureSize(TexCoords tc, int vertexCount, int perVert)
          Check an incoming TexCoords object for null and correct size.
 void Geometry.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normals, java.nio.FloatBuffer colors, TexCoords coords)
          reconstruct reinitializes the geometry with new data.
 void Line.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normals, java.nio.FloatBuffer colors, TexCoords coords)
           
 void Point.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normals, java.nio.FloatBuffer colors, TexCoords coords)
           
 void SharedMesh.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normals, java.nio.FloatBuffer colors, TexCoords textureCoords)
          reconstruct is not supported in SharedMesh.
 void QuadMesh.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices)
          Recreates the geometric information of this TriMesh from scratch.
 void TriMesh.reconstruct(java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices)
          Recreates the geometric information of this TriMesh from scratch.
 void Geometry.setTextureCoords(TexCoords coords)
          setTextureBuffer sets this geometry's textures (position 0) via a float buffer.
 void SharedMesh.setTextureCoords(TexCoords buff)
          setTextureBuffer is not supported by SharedMesh.
 void Geometry.setTextureCoords(TexCoords coords, int unit)
          setTextureBuffer sets this geometry's textures at the position given via a float buffer.
 void SharedMesh.setTextureCoords(TexCoords buff, int position)
          setTextureBuffer not supported by SharedMesh
 

Method parameters in com.jme.scene with type arguments of type TexCoords
 void Geometry.setTextureCoords(java.util.ArrayList<TexCoords> texBuf)
           
 

Constructors in com.jme.scene with parameters of type TexCoords
Geometry(java.lang.String name, java.nio.FloatBuffer vertex, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords)
          Constructor creates a new Geometry object.
Line(java.lang.String name, java.nio.FloatBuffer vertex, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords)
          Constructor instantiates a new Line object with a given set of data.
Point(java.lang.String name, java.nio.FloatBuffer vertex, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords)
          Constructor instantiates a new Point object with a given set of data.
QuadMesh(java.lang.String name, java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices)
          Constructor instantiates a new TriMesh object.
TriMesh(java.lang.String name, java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices)
          Constructor instantiates a new TriMesh object.
 

Uses of TexCoords in com.jme.scene.lod
 

Constructors in com.jme.scene.lod with parameters of type TexCoords
AreaClodMesh(java.lang.String name, java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices, CollapseRecord[] records)
          Creates a clod mesh with the given information.
ClodMesh(java.lang.String name, java.nio.FloatBuffer vertices, java.nio.FloatBuffer normal, java.nio.FloatBuffer color, TexCoords coords, java.nio.IntBuffer indices, CollapseRecord[] records)
          Creates a clod mesh with the given information.