Uses of Class
javax.vecmath.Color4f

Packages that use Color4f
com.sun.j3d.utils.geometry Provides geometry construction, triangulation, and optimization utility classes. 
com.sun.j3d.utils.pickfast Provides picking utility classes for the new core picking methods. 
com.sun.j3d.utils.picking OBSOLETE: provides picking utility classes for the old picking methods. 
com.sun.j3d.utils.scenegraph.io.retained   
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 Color4f in com.sun.j3d.utils.geometry
 

Methods in com.sun.j3d.utils.geometry with parameters of type Color4f
 void GeometryInfo.setColors(Color4f[] colors)
          Sets the colors array.
 

Uses of Color4f in com.sun.j3d.utils.pickfast
 

Methods in com.sun.j3d.utils.pickfast that return Color4f
 Color4f PickIntersection.getPointColor()
          Returns the color of the intersection point.
 Color4f[] PickIntersection.getPrimitiveColors()
          Get the colors of the intersected primitive.
 

Uses of Color4f in com.sun.j3d.utils.picking
 

Methods in com.sun.j3d.utils.picking that return Color4f
 Color4f PickIntersection.getPointColor()
          Returns the color of the intersection point.
 Color4f[] PickIntersection.getPrimitiveColors()
          Get the colors of the intersected primitive.
 

Uses of Color4f in com.sun.j3d.utils.scenegraph.io.retained
 

Methods in com.sun.j3d.utils.scenegraph.io.retained that return Color4f
 Color4f Controller.readColor4f(java.io.DataInput in)
           
 

Methods in com.sun.j3d.utils.scenegraph.io.retained with parameters of type Color4f
 void Controller.writeColor4f(java.io.DataOutput out, Color4f vec)
           
 

Uses of Color4f in javax.media.j3d
 

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

Methods in javax.media.j3d with parameters of type Color4f
 void Texture.getBoundaryColor(Color4f boundaryColor)
          Retrieves the texture boundary color for this texture object.
 void GeometryArray.getColor(int index, Color4f color)
          Gets the color associated with the vertex at the specified index for this object.
 void GeometryArray.getColors(int index, Color4f[] colors)
          Gets the colors associated with the vertices starting at the specified index for this object.
 void TextureAttributes.getTextureBlendColor(Color4f textureBlendColor)
          Gets the texture blend color for this appearance component object.
 void Texture.setBoundaryColor(Color4f boundaryColor)
          Sets the texture boundary color for this texture object.
 void GeometryArray.setColor(int index, Color4f color)
          Sets the color associated with the vertex at the specified index for this object.
 void GeometryArray.setColorRef4f(Color4f[] colors)
          Deprecated. As of Java 3D version 1.3, use geometry by-copy for Color4f arrays
 void GeometryArray.setColors(int index, Color4f[] colors)
          Sets the colors associated with the vertices starting at the specified index for this object.
 void GeometryArray.setColors(int index, Color4f[] colors, int start, int length)
          Sets the colors associated with the vertices starting at the specified index for this object using data in colors starting at index start for length colors.
 void TextureAttributes.setTextureBlendColor(Color4f textureBlendColor)
          Sets the texture constant color for this texture attributes object.
 

Constructors in javax.media.j3d with parameters of type Color4f
TextureAttributes(int textureMode, Transform3D transform, Color4f textureBlendColor, int perspCorrectionMode)
          Constructs a TextureAttributes object with the specified values.
 

Uses of Color4f in javax.vecmath
 

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