Uses of Class
com.threed.jpct.RGBColor

Packages that use RGBColor
com.threed.jpct   
com.threed.jpct.util   
 

Uses of RGBColor in com.threed.jpct
 

Fields in com.threed.jpct declared as RGBColor
static RGBColor RGBColor.BLACK
           
static RGBColor RGBColor.BLUE
           
static RGBColor RGBColor.GREEN
           
static RGBColor RGBColor.RED
           
static RGBColor RGBColor.WHITE
           
 

Methods in com.threed.jpct that return RGBColor
 RGBColor Object3D.getAdditionalColor()
          Returns the additional color.
 

Methods in com.threed.jpct with parameters of type RGBColor
 void FrameBuffer.blit(Texture src, int srcX, int srcY, int destX, int destY, int sourceWidth, int sourceHeight, int destWidth, int destHeight, int transValue, boolean additive, RGBColor addColor)
          Special version of blit() that allows for scaling, i.e. it doesn't make 1-to-1 copies but can up- or down-scale.
 void FrameBuffer.clear(RGBColor col)
          Clears the framebuffer with the given color.
 void World.drawWireframe(FrameBuffer buffer, RGBColor color)
          Draws the current scene as a single-colored wireframe.
 void Object3D.setAdditionalColor(RGBColor col)
          Sets the additional color for this object.
 

Constructors in com.threed.jpct with parameters of type RGBColor
Texture(int width, int height, RGBColor col)
          Creates a colored texture with no alpha in the given dimensions.
 

Uses of RGBColor in com.threed.jpct.util
 

Methods in com.threed.jpct.util with parameters of type RGBColor
 void Overlay.setColor(RGBColor color)
          Sets a new additional color.