Uses of Interface
org.scilab.forge.scirenderer.texture.Texture

Packages that use Texture
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.texture   
org.scilab.forge.scirenderer.ruler   
org.scilab.forge.scirenderer.shapes.appearance   
org.scilab.forge.scirenderer.texture   
 

Uses of Texture in org.scilab.forge.scirenderer
 

Methods in org.scilab.forge.scirenderer with parameters of type Texture
 void DrawingTools.draw(Texture texture)
          Draw the texture on XY plane in current coordinate.
 void DrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions)
          Draw the given texture at all given position.
 void DrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
          Draw the given texture at all given position with the given rotation angle.
 void DrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position)
          Draw the given texture at given position.
 void DrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position, double rotationAngle)
          Draw the given texture at given position with the given rotation angle.
 

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

Methods in org.scilab.forge.scirenderer.implementation.g2d with parameters of type Texture
 void G2DDrawingTools.draw(Texture texture)
           
 void G2DDrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions)
           
 void G2DDrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
           
 void G2DDrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position)
           
 void G2DDrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position, double rotationAngle)
           
 

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

Methods in org.scilab.forge.scirenderer.implementation.g2d.motor that return Texture
 Texture SpritedRectangle.getSprite()
           
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.motor with parameters of type Texture
 void Motor3D.draw(DrawingTools drawingTools, Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
           
 void Motor3D.draw(DrawingTools drawingTools, Texture texture, AnchorPosition anchor, Vector3d position, double rotationAngle)
           
 void Motor3D.drawTexture(DrawingTools drawingTools, java.awt.image.BufferedImage image, Texture texture)
           
 

Constructors in org.scilab.forge.scirenderer.implementation.g2d.motor with parameters of type Texture
SpritedRectangle(Vector3d vertex, Texture sprite, AnchorPosition anchor, G2DTextureDrawingTools drawingTools, double rotationAngle)
           
 

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

Classes in org.scilab.forge.scirenderer.implementation.g2d.texture that implement Texture
 class G2DTextureManager.G2DTexture
          Inner class for Texture implementation.
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.texture that return Texture
 Texture G2DTextureManager.createTexture()
           
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.texture with parameters of type Texture
 void G2DTextureDrawingTools.accept(Texture texture)
           
 void G2DTextureManager.dispose(Texture texture)
           
 void G2DTextureManager.draw(G2DDrawingTools drawingTools, Texture texture)
          Draw the given texture.
 

Method parameters in org.scilab.forge.scirenderer.implementation.g2d.texture with type arguments of type Texture
 void G2DTextureManager.dispose(java.util.Collection<Texture> textures)
           
 

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

Methods in org.scilab.forge.scirenderer.implementation.jogl with parameters of type Texture
 void JoGLDrawingTools.bind(Texture texture)
          Bind the given texture to the OpenGl context.
 void JoGLDrawingTools.draw(Texture texture)
           
 void JoGLDrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions)
           
 void JoGLDrawingTools.draw(Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
           
 void JoGLDrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position)
           
 void JoGLDrawingTools.draw(Texture texture, AnchorPosition anchor, Vector3d position, double rotationAngle)
           
 

Uses of Texture in org.scilab.forge.scirenderer.implementation.jogl.texture
 

Classes in org.scilab.forge.scirenderer.implementation.jogl.texture that implement Texture
 class JoGLTextureManager.JoGLTexture
          Inner class for Texture implementation.
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.texture that return Texture
 Texture JoGLTextureManager.createTexture()
           
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.texture with parameters of type Texture
 void JoGLTextureManager.bind(JoGLDrawingTools drawingTools, Texture texture)
          Texture binder.
 void JoGLTextureManager.dispose(Texture texture)
           
 void JoGLTextureManager.draw(JoGLDrawingTools drawingTools, Texture texture)
          Draw the given texture.
 void JoGLTextureManager.draw(JoGLDrawingTools drawingTools, Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
           
 void JoGLTextureManager.draw(JoGLDrawingTools drawingTools, Texture texture, AnchorPosition anchor, Vector3d position, double rotationAngle)
           
 

Method parameters in org.scilab.forge.scirenderer.implementation.jogl.texture with type arguments of type Texture
 void JoGLTextureManager.dispose(java.util.Collection<Texture> textures)
           
 

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

Methods in org.scilab.forge.scirenderer.ruler that return Texture
 Texture RulerSpriteFactory.create(double value, java.text.DecimalFormat adaptedFormat, TextureManager textureManager)
          Return the texture for the given value.
 Texture DefaultRulerSpriteFactory.create(double value, java.text.DecimalFormat adaptedFormat, TextureManager textureManager)
           
 

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

Methods in org.scilab.forge.scirenderer.shapes.appearance that return Texture
 Texture Appearance.getTexture()
          Texture getter.
 

Methods in org.scilab.forge.scirenderer.shapes.appearance with parameters of type Texture
 void Appearance.setTexture(Texture texture)
          Texture setter.
 

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

Classes in org.scilab.forge.scirenderer.texture that implement Texture
 class AbstractTexture
           
 

Methods in org.scilab.forge.scirenderer.texture that return Texture
 Texture TextureManager.createTexture()
          Texture creator.
 

Methods in org.scilab.forge.scirenderer.texture with parameters of type Texture
 void TextureManager.dispose(Texture texture)
           
 

Method parameters in org.scilab.forge.scirenderer.texture with type arguments of type Texture
 void TextureManager.dispose(java.util.Collection<Texture> textures)
          Dispose the given textures.