Uses of Class
javax.media.ding3d.vecmath.TexCoord3f

Packages that use TexCoord3f
javax.media.ding3d 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.media.ding3d.utils.geometry Provides geometry construction, triangulation, and optimization utility classes. 
javax.media.ding3d.utils.pickfast Provides picking utility classes for the new core picking methods. 
javax.media.ding3d.utils.picking OBSOLETE: provides picking utility classes for the old picking methods. 
javax.media.ding3d.vecmath Provides 3D vector mathematics classes. 
 

Uses of TexCoord3f in javax.media.ding3d
 

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

Methods in javax.media.ding3d with parameters of type TexCoord3f
 void GeometryArray.getTextureCoordinate(int texCoordSet, int index, TexCoord3f 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, TexCoord3f[] 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.setTexCoordRef3f(int texCoordSet, TexCoord3f[] texCoords)
          Deprecated. As of Java 3D version 1.3, use geometry by-copy for TexCoord3f arrays
 void GeometryArray.setTextureCoordinate(int texCoordSet, int index, TexCoord3f 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, TexCoord3f[] 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, TexCoord3f[] 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.
 

Uses of TexCoord3f in javax.media.ding3d.utils.geometry
 

Methods in javax.media.ding3d.utils.geometry with parameters of type TexCoord3f
 void GeometryInfo.setTextureCoordinates(int texCoordSet, TexCoord3f[] texCoords)
          Sets the texture coordinates array for the specified set.
 

Uses of TexCoord3f in javax.media.ding3d.utils.pickfast
 

Methods in javax.media.ding3d.utils.pickfast that return TexCoord3f
 TexCoord3f PickIntersection.getPointTextureCoordinate(int index)
          Returns the texture coordinate of the intersection point at the specifed index in the specified texture coordinate set.
 TexCoord3f[] PickIntersection.getPrimitiveTexCoords(int index)
          Get the texture coordinates of the intersected primitive at the specifed index in the specified texture coordinate set.
 

Uses of TexCoord3f in javax.media.ding3d.utils.picking
 

Methods in javax.media.ding3d.utils.picking that return TexCoord3f
 TexCoord3f PickIntersection.getPointTextureCoordinate(int index)
          Returns the texture coordinate of the intersection point at the specifed index in the specified texture coordinate set.
 TexCoord3f[] PickIntersection.getPrimitiveTexCoords(int index)
          Get the texture coordinates of the intersected primitive at the specifed index in the specified texture coordinate set.
 

Uses of TexCoord3f in javax.media.ding3d.vecmath
 

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