Uses of Class
javax.vecmath.TexCoord2f

Packages that use TexCoord2f
com.sun.j3d.utils.geometry Provides geometry construction, triangulation, and optimization utility classes. 
javax.media.j3d Provides the core set of classes for the 3D graphics API for the Java platform; click here for more information, including explanatory material that was formerly found in the guide. 
javax.vecmath Provides 3D vector mathematics classes. 
 

Uses of TexCoord2f in com.sun.j3d.utils.geometry
 

Methods in com.sun.j3d.utils.geometry with parameters of type TexCoord2f
 void GeometryInfo.setTextureCoordinates(int texCoordSet, TexCoord2f[] texCoords)
          Sets the 2D texture coordinates for the specified set.
 

Uses of TexCoord2f in javax.media.j3d
 

Methods in javax.media.j3d that return TexCoord2f
 TexCoord2f[] GeometryArray.getTexCoordRef2f(int texCoordSet)
          Deprecated. As of Java 3D version 1.3, use geometry by-copy for TexCoord2f arrays
 

Methods in javax.media.j3d with parameters of type TexCoord2f
 void GeometryArray.getTextureCoordinate(int texCoordSet, int index, TexCoord2f texCoord)
          Gets the texture coordinate associated with the vertex at the specified index in the specified texture coordinate set for this object.
 void GeometryArray.getTextureCoordinates(int texCoordSet, int index, TexCoord2f[] texCoords)
          Gets the texture coordinates associated with the vertices starting at the specified index in the specified texture coordinate set for this object.
 void GeometryArray.setTexCoordRef2f(int texCoordSet, TexCoord2f[] texCoords)
          Deprecated. As of Java 3D version 1.3, use geometry by-copy for TexCoord2f arrays
 void GeometryArray.setTextureCoordinate(int texCoordSet, int index, TexCoord2f texCoord)
          Sets the texture coordinate associated with the vertex at the specified index in the specified texture coordinate set for this object.
 void GeometryArray.setTextureCoordinates(int texCoordSet, int index, TexCoord2f[] texCoords)
          Sets the texture coordinates associated with the vertices starting at the specified index in the specified texture coordinate set for this object.
 void GeometryArray.setTextureCoordinates(int texCoordSet, int index, TexCoord2f[] texCoords, int start, int length)
          Sets the texture coordinates associated with the vertices starting at the specified index in the specified texture coordinate set for this object using data in texCoords starting at index start and ending at index start+length.
 

Uses of TexCoord2f in javax.vecmath
 

Constructors in javax.vecmath with parameters of type TexCoord2f
TexCoord2f(TexCoord2f v1)
          Constructs and initializes a TexCoord2f from the specified TexCoord2f.