Uses of Class
org.jzy3d.plot3d.primitives.AbstractComposite

Packages that use AbstractComposite
org.jzy3d.plot3d.builder   
org.jzy3d.plot3d.builder.concrete   
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.interactive.tools   
org.jzy3d.plot3d.primitives.textured   
org.jzy3d.plot3d.rendering.scene   
 

Uses of AbstractComposite in org.jzy3d.plot3d.builder
 

Methods in org.jzy3d.plot3d.builder that return AbstractComposite
abstract  AbstractComposite Tesselator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite Tesselator.build(java.util.List<Coord3d> coordinates)
           
 

Uses of AbstractComposite in org.jzy3d.plot3d.builder.concrete
 

Methods in org.jzy3d.plot3d.builder.concrete that return AbstractComposite
 AbstractComposite RingInterpolator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite RingExtrapolator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite OrthonormalTesselator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite RingTesselator.build(java.util.List<Coord3d> coordinates)
          Deprecated.  
 

Uses of AbstractComposite in org.jzy3d.plot3d.primitives
 

Subclasses of AbstractComposite in org.jzy3d.plot3d.primitives
 class Cylinder
           
 class FlatLine2d
           
 class HistogramBar
           
 class Shape
          Allows building custom shapes defined by an ArrayList of Polygons.
 

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

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

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

Subclasses of AbstractComposite in org.jzy3d.plot3d.primitives.enlightables
 class EnlightableBar
           
 

Uses of AbstractComposite in org.jzy3d.plot3d.primitives.interactive.tools
 

Methods in org.jzy3d.plot3d.primitives.interactive.tools with parameters of type AbstractComposite
static java.util.List<PolygonProjection> ProjectionUtils.project(javax.media.opengl.GL gl, javax.media.opengl.glu.GLU glu, Camera cam, AbstractComposite c)
           
 

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

Subclasses of AbstractComposite in org.jzy3d.plot3d.primitives.textured
 class TexturedCube
           
 class TexturedCylinder
           
 

Uses of AbstractComposite in org.jzy3d.plot3d.rendering.scene
 

Methods in org.jzy3d.plot3d.rendering.scene with parameters of type AbstractComposite
static java.util.ArrayList<AbstractDrawable> Decomposition.getDecomposition(AbstractComposite input)
          Recursively expand all monotype Drawables from the given Composite.