Uses of Class
org.scilab.forge.scirenderer.shapes.appearance.Color

Packages that use Color
org.scilab.forge.scirenderer   
org.scilab.forge.scirenderer.implementation.jogl   
org.scilab.forge.scirenderer.implementation.jogl.lightning   
org.scilab.forge.scirenderer.implementation.jogl.utils   
org.scilab.forge.scirenderer.lightning   
org.scilab.forge.scirenderer.ruler   
org.scilab.forge.scirenderer.shapes.appearance   
org.scilab.forge.scirenderer.sprite   
 

Uses of Color in org.scilab.forge.scirenderer
 

Methods in org.scilab.forge.scirenderer with parameters of type Color
 void DrawingTools.clear(Color color)
          Clear the canvas with the given color.
 

Uses of Color in org.scilab.forge.scirenderer.implementation.jogl
 

Methods in org.scilab.forge.scirenderer.implementation.jogl with parameters of type Color
 void JoGLDrawingTools.clear(Color color)
           
 

Uses of Color in org.scilab.forge.scirenderer.implementation.jogl.lightning
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.lightning that return Color
 Color JoGLLight.getAmbientColor()
           
 Color JoGLLight.getDiffuseColor()
           
 Color JoGLLight.getSpecularColor()
           
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.lightning with parameters of type Color
 void JoGLLight.setAmbientColor(Color color)
           
 void JoGLLight.setDiffuseColor(Color color)
           
 void JoGLLight.setSpecularColor(Color color)
           
 

Uses of Color in org.scilab.forge.scirenderer.implementation.jogl.utils
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.utils with parameters of type Color
static void GLShortCuts.useColor(javax.media.opengl.GL gl, Color color)
          Set the OpenGl context color to the given color.
static void G2DShortCuts.useColor(java.awt.Graphics2D g2d, Color c)
          Use the given color for drawing.
 

Uses of Color in org.scilab.forge.scirenderer.lightning
 

Methods in org.scilab.forge.scirenderer.lightning that return Color
 Color Light.getAmbientColor()
          Return the ambient color of this light;
 Color Light.getDiffuseColor()
          Return the diffuse color of this light;
 Color Light.getSpecularColor()
          Return the specular color of this light;
 

Methods in org.scilab.forge.scirenderer.lightning with parameters of type Color
 void Light.setAmbientColor(Color color)
          Set the ambient color of this light.
 void Light.setDiffuseColor(Color color)
          Set the diffuse color of this light.
 void Light.setSpecularColor(Color color)
          Set the specular color of this light.
 

Uses of Color in org.scilab.forge.scirenderer.ruler
 

Fields in org.scilab.forge.scirenderer.ruler declared as Color
static Color RulerModel.DEFAULT_COLOR
          Default color.
 

Methods in org.scilab.forge.scirenderer.ruler that return Color
 Color RulerModel.getColor()
          Color getter.
 Color DefaultRulerModel.getColor()
           
 

Methods in org.scilab.forge.scirenderer.ruler with parameters of type Color
 void DefaultRulerModel.setColor(Color color)
           
 

Uses of Color in org.scilab.forge.scirenderer.shapes.appearance
 

Fields in org.scilab.forge.scirenderer.shapes.appearance declared as Color
static Color Appearance.DEFAULT_FILL_COLOR
          The default fill color.
static Color Appearance.DEFAULT_LINE_COLOR
          The default line color.
 

Methods in org.scilab.forge.scirenderer.shapes.appearance that return Color
 Color Appearance.getFillColor()
          Return the fill color.
 Color Appearance.getLineColor()
          Return the line color.
 

Methods in org.scilab.forge.scirenderer.shapes.appearance with parameters of type Color
 void Appearance.setFillColor(Color fillColor)
          Set the fill color.
 void Appearance.setLineColor(Color lineColor)
          Set the line color.
 

Uses of Color in org.scilab.forge.scirenderer.sprite
 

Fields in org.scilab.forge.scirenderer.sprite declared as Color
static Color TextEntity.DEFAULT_TEXT_COLOR
          The default text color.
 

Methods in org.scilab.forge.scirenderer.sprite that return Color
 Color TextEntity.getTextColor()
          Return the text color.
 

Methods in org.scilab.forge.scirenderer.sprite with parameters of type Color
 void SpriteDrawingTools.clear(Color color)
          Clear the sprite with the given color.
 void SpriteDrawingTools.fillDisc(int x, int y, int diameter, Color color)
          Fill a disc of given diameter, centered at (x, y) with the given appearance.
 void TextEntity.setTextColor(Color textColor)
          Set the text color.