Uses of Interface
org.jzy3d.plot3d.primitives.IGLRenderer

Packages that use IGLRenderer
org.jzy3d.picking   
org.jzy3d.plot3d.primitives Provides 3d primitives that either implement plot3d.rendering.Drawable or plot3d.rendering.Composite3d, and thus provide a draw() and transform() function for the plot3d.rendering.Scene
org.jzy3d.plot3d.primitives.contour   
org.jzy3d.plot3d.primitives.enlightables   
org.jzy3d.plot3d.primitives.graphs   
org.jzy3d.plot3d.primitives.graphs.impl   
org.jzy3d.plot3d.primitives.graphs.nodes   
org.jzy3d.plot3d.primitives.interactive   
org.jzy3d.plot3d.primitives.textured   
org.jzy3d.plot3d.text Provides utilities for rendering texts into a 3 dimensional scene. 
 

Uses of IGLRenderer in org.jzy3d.picking
 

Subinterfaces of IGLRenderer in org.jzy3d.picking
 interface IPickable
           
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives
 

Classes in org.jzy3d.plot3d.primitives that implement IGLRenderer
 class AbstractComposite
          A Composite gathers several Drawable and provides default methods for rendering them all in one call.
 class AbstractDrawable
          An AbstractDrawable defines objects that may be rendered into an OpenGL context provided by a ICanvas.
 class AbstractWireframeable
          An AbstractWireframeable is a drawable object that has a wireframe mode for display.
 class CompileableComposite
          A CompileableComposite allows storage and subsequent faster execution of individual contained instances drawing routines in an OpenGL display list.
 class Cylinder
           
 class Disk
           
 class FlatLine2d
           
 class HistogramBar
           
 class LineStrip
           
 class MultiColorScatter
          A scatter plot supporting a colormap for shading each dot color and alpha.
 class MultiColorScatterList
          A scatter plot supporting a List as input.
 class Parallelepiped
          A Parallelepiped is a parallelepiped rectangle that is Drawable and Wireframeable.
 class Point
          A Point3d is a storage for a Coord3d and a Color that represents a drawable 3d point.
 class Polygon
          A Polygon holds a List of Points that store a coordinate and a color.
 class Quad
          A Quad extends a Polygon in order to provide a specific draw() method that relies on a dedicated GL call (GL_QUADS), and to ensure the number of points is never greater than 4.
 class Scatter
          Experimental 3d object.
 class Shape
          Allows building custom shapes defined by an ArrayList of Polygons.
 class Sphere
          A Sphere allows rendering a sphere.
 class Tube
          A Tube may be used to render cylinders or pyramids, according to its input parameters.
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.contour
 

Classes in org.jzy3d.plot3d.primitives.contour that implement IGLRenderer
 class ContourLevel
          A ContourLevel is an AbstractComposite gathering a collection of LineStrips for a given contour level.
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.enlightables
 

Classes in org.jzy3d.plot3d.primitives.enlightables that implement IGLRenderer
 class Enlightable
           
 class EnlightableBar
           
 class EnlightableDisk
           
 class EnlightablePolygon
           
 class EnlightableSphere
          A Sphere allows rendering a sphere.
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.graphs
 

Classes in org.jzy3d.plot3d.primitives.graphs that implement IGLRenderer
 class AbstractDrawableGraph2d<V,E>
          An implementation based on IPickable objects should register mapping between vertex model and vertex representation through PickSupport.registerPickableObject(IPickable pickable, V v) Registration should be done by overriding setGraphModel.
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.graphs.impl
 

Classes in org.jzy3d.plot3d.primitives.graphs.impl that implement IGLRenderer
 class DefaultDrawableGraph2d<V,E>
           
 class PointGraph2d<V,E>
           
 class TextureGraph2d<V,E>
           
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.graphs.nodes
 

Classes in org.jzy3d.plot3d.primitives.graphs.nodes that implement IGLRenderer
 class PickablePoint
           
 class PickableTexture
           
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.interactive
 

Classes in org.jzy3d.plot3d.primitives.interactive that implement IGLRenderer
 class InteractiveScatter
          A Scatter that supports an "highlighted status" to change selected point color
 class InteractiveSphere
           
 

Uses of IGLRenderer in org.jzy3d.plot3d.primitives.textured
 

Classes in org.jzy3d.plot3d.primitives.textured that implement IGLRenderer
 class DrawableTexture
          A DrawableTexture can only mount its texture while the GL thread is current, so the best is to let draw() automount texture file the first time the resource is required.
 class TexturedCube
           
 class TexturedCylinder
           
 class TranslucentQuad
           
 

Uses of IGLRenderer in org.jzy3d.plot3d.text
 

Classes in org.jzy3d.plot3d.text that implement IGLRenderer
 class TextBitmapDrawable
          EXPERIMENTAL A TextBitmapDrawable is a Text renderer that may be inserted into a scene graph.