Uses of Class
javax.vecmath.Color4b

Packages that use Color4b
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 Color4b in com.sun.j3d.utils.geometry
 

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

Uses of Color4b in javax.media.j3d
 

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

Methods in javax.media.j3d with parameters of type Color4b
 void GeometryArray.getColor(int index, Color4b color)
          Gets the color associated with the vertex at the specified index for this object.
 void GeometryArray.getColors(int index, Color4b[] colors)
          Gets the colors associated with the vertices starting at the specified index for this object.
 void GeometryArray.setColor(int index, Color4b color)
          Sets the color associated with the vertex at the specified index for this object.
 void GeometryArray.setColorRef4b(Color4b[] colors)
          Deprecated. As of Java 3D version 1.3, use geometry by-copy for Color4b arrays
 void GeometryArray.setColors(int index, Color4b[] colors)
          Sets the colors associated with the vertices starting at the specified index for this object.
 void GeometryArray.setColors(int index, Color4b[] 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.
 

Uses of Color4b in javax.vecmath
 

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