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

Packages that use AbstractComposite
org.jzy3d.plot3d.builder   
org.jzy3d.plot3d.builder.concrete   
org.jzy3d.plot3d.builder.delaunay   
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 Tessellator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite Tessellator.build(List<Coord3d> coordinates)
           
 

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

Methods in org.jzy3d.plot3d.builder.concrete that return AbstractComposite
 AbstractComposite RingTessellator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite RingExtrapolator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite OrthonormalTessellator.build(float[] x, float[] y, float[] z)
           
 AbstractComposite OldRingTesselator.build(List<Coord3d> coordinates)
          Deprecated.  
 

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

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

Uses of AbstractComposite in org.jzy3d.plot3d.primitives
 

Subclasses of AbstractComposite in org.jzy3d.plot3d.primitives
 class CompositeParallelepiped
          A composite implementation of a parallelepiped, meaning it can be decomposed into distinct primitive for polygon ordering.
 class Cylinder
           
 class FlatLine2d
           
 class HistogramBar
           
 class InterpolatedLineStrip
           
 class Shape
          Allows building custom shapes defined by an ArrayList of Polygons.
 

Methods in org.jzy3d.plot3d.primitives with parameters of type AbstractComposite
static void Polygon.setPolygonOffsetFillEnable(AbstractComposite composite, boolean polygonOffsetFillEnable)
          A utility to change polygon offset fill status of a AbstractComposite containing 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 List<PolygonProjection> ProjectionUtils.project(javax.media.opengl.GL2 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 ArrayList<AbstractDrawable> Decomposition.getDecomposition(AbstractComposite input)
          Recursively expand all monotype Drawables from the given Composite.