Uses of Interface
org.scilab.forge.scirenderer.buffers.ElementsBuffer

Packages that use ElementsBuffer
org.scilab.forge.scirenderer   
org.scilab.forge.scirenderer.buffers   
org.scilab.forge.scirenderer.implementation.g2d   
org.scilab.forge.scirenderer.implementation.g2d.buffers   
org.scilab.forge.scirenderer.implementation.g2d.motor   
org.scilab.forge.scirenderer.implementation.jogl   
org.scilab.forge.scirenderer.implementation.jogl.buffers   
org.scilab.forge.scirenderer.implementation.jogl.texture   
org.scilab.forge.scirenderer.shapes.geometry   
 

Uses of ElementsBuffer in org.scilab.forge.scirenderer
 

Methods in org.scilab.forge.scirenderer with parameters of type ElementsBuffer
 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.
 

Uses of ElementsBuffer in org.scilab.forge.scirenderer.buffers
 

Methods in org.scilab.forge.scirenderer.buffers that return ElementsBuffer
 ElementsBuffer BuffersManager.createElementsBuffer()
          Create an elements buffer.
 

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

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

Uses of ElementsBuffer in org.scilab.forge.scirenderer.implementation.g2d.buffers
 

Classes in org.scilab.forge.scirenderer.implementation.g2d.buffers that implement ElementsBuffer
 class G2DElementsBuffer
           
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.buffers that return ElementsBuffer
 ElementsBuffer G2DBuffersManager.createElementsBuffer()
           
 

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

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

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

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

Uses of ElementsBuffer in org.scilab.forge.scirenderer.implementation.jogl.buffers
 

Classes in org.scilab.forge.scirenderer.implementation.jogl.buffers that implement ElementsBuffer
 class JoGLElementsBuffer
           
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.buffers that return ElementsBuffer
 ElementsBuffer JoGLBuffersManager.createElementsBuffer()
           
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.buffers with parameters of type ElementsBuffer
 int JoGLBuffersManager.bindColorsBuffer(GL2 gl, ElementsBuffer buffer)
          Bind the given buffer as color buffer.
 int JoGLBuffersManager.bindNormalsBuffer(GL2 gl, ElementsBuffer buffer)
          Bind the given buffer as normal buffer.
 int JoGLBuffersManager.bindTextureCoordinatesBuffer(GL2 gl, ElementsBuffer buffer)
          Bind the given buffer as texture coordinate buffer.
 int JoGLBuffersManager.bindVertexBuffer(GL2 gl, ElementsBuffer buffer)
          Bind the given buffer as vertex buffer.
 

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

Methods in org.scilab.forge.scirenderer.implementation.jogl.texture with parameters of type ElementsBuffer
 void JoGLTextureManager.draw(JoGLDrawingTools drawingTools, Texture texture, AnchorPosition anchor, ElementsBuffer positions, double rotationAngle)
           
 

Uses of ElementsBuffer in org.scilab.forge.scirenderer.shapes.geometry
 

Methods in org.scilab.forge.scirenderer.shapes.geometry that return ElementsBuffer
 ElementsBuffer Geometry.getColors()
          Return the colors.
 ElementsBuffer DefaultGeometry.getColors()
           
 ElementsBuffer Geometry.getNormals()
          Return the normals.
 ElementsBuffer DefaultGeometry.getNormals()
           
 ElementsBuffer Geometry.getTextureCoordinates()
          Texture coordinates getter.
 ElementsBuffer DefaultGeometry.getTextureCoordinates()
           
 ElementsBuffer Geometry.getVertices()
          Return the vertices.
 ElementsBuffer DefaultGeometry.getVertices()
           
 

Methods in org.scilab.forge.scirenderer.shapes.geometry with parameters of type ElementsBuffer
 void DefaultGeometry.setColors(ElementsBuffer colors)
          Colors setter.
 void DefaultGeometry.setNormals(ElementsBuffer normals)
          Normals setter.
 void DefaultGeometry.setTextureCoordinates(ElementsBuffer textureCoordinates)
          Texture coordinates setter.
 void DefaultGeometry.setVertices(ElementsBuffer vertices)
          Vertices setter.