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

Packages that use Appearance
org.scilab.forge.scirenderer   
org.scilab.forge.scirenderer.implementation.g2d   
org.scilab.forge.scirenderer.implementation.g2d.motor   
org.scilab.forge.scirenderer.implementation.g2d.texture   
org.scilab.forge.scirenderer.implementation.jogl   
org.scilab.forge.scirenderer.implementation.jogl.drawer   
org.scilab.forge.scirenderer.implementation.jogl.utils   
org.scilab.forge.scirenderer.shapes.appearance   
org.scilab.forge.scirenderer.texture   
 

Uses of Appearance in org.scilab.forge.scirenderer
 

Methods in org.scilab.forge.scirenderer with parameters of type Appearance
 void DrawingTools.draw(Geometry geometry, Appearance appearance)
          Draw the given geometry.
 

Uses of Appearance in org.scilab.forge.scirenderer.implementation.g2d
 

Methods in org.scilab.forge.scirenderer.implementation.g2d with parameters of type Appearance
 void G2DDrawingTools.draw(Geometry geometry, Appearance appearance)
           
 

Uses of Appearance in org.scilab.forge.scirenderer.implementation.g2d.motor
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.motor with parameters of type Appearance
 void Motor3D.draw(DrawingTools drawingTools, Geometry geometry, Appearance appearance)
          Add the geometry to the scene
static java.awt.Stroke G2DStroke.getStroke(Appearance appearance, double dashPhase)
           
 

Uses of Appearance in org.scilab.forge.scirenderer.implementation.g2d.texture
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.texture with parameters of type Appearance
 void G2DTextureDrawingTools.drawCircle(int x, int y, int diameter, Appearance appearance)
           
 void G2DTextureDrawingTools.drawPlus(int size, Appearance appearance)
           
 void G2DTextureDrawingTools.drawPolyline(int[] coordinates, Appearance appearance)
           
 void G2DTextureDrawingTools.fillPolygon(int[] coordinates, Appearance appearance)
           
 

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

Methods in org.scilab.forge.scirenderer.implementation.jogl with parameters of type Appearance
 void JoGLDrawingTools.draw(Geometry geometry, Appearance appearance)
           
 

Uses of Appearance in org.scilab.forge.scirenderer.implementation.jogl.drawer
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.drawer with parameters of type Appearance
 void JoGLShapeDrawer.draw(JoGLDrawingTools drawingTools, Geometry geometry, Appearance appearance)
          Draw a given geometry with given appearance.
 

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

Methods in org.scilab.forge.scirenderer.implementation.jogl.utils with parameters of type Appearance
static void GLShortCuts.useLineAppearance(GL2 gl, Appearance appearance)
          Set the OpenGl context line appearance from the given appearance.
static void G2DShortCuts.useLineAppearance(java.awt.Graphics2D g2d, Appearance appearance)
          Use the given appearance for drawing lines.
 

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

Methods in org.scilab.forge.scirenderer.shapes.appearance that return Appearance
static Appearance Appearance.getDefault()
          Return the default appearance.
 

Uses of Appearance in org.scilab.forge.scirenderer.texture
 

Methods in org.scilab.forge.scirenderer.texture with parameters of type Appearance
 void TextureDrawingTools.drawCircle(int x, int y, int diameter, Appearance appearance)
          Draw a circle.
 void BufferedImageTextureDrawingTools.drawCircle(int x, int y, int diameter, Appearance appearance)
           
 void TextureDrawingTools.drawPlus(int size, Appearance appearance)
          Draw a plus.
 void BufferedImageTextureDrawingTools.drawPlus(int size, Appearance appearance)
           
 void TextureDrawingTools.drawPolyline(int[] coordinates, Appearance appearance)
          Draw a polyline.
 void BufferedImageTextureDrawingTools.drawPolyline(int[] coordinates, Appearance appearance)
           
 void TextureDrawingTools.fillPolygon(int[] coordinates, Appearance appearance)
          Fill a polygon.
 void BufferedImageTextureDrawingTools.fillPolygon(int[] coordinates, Appearance appearance)