Uses of Class
org.jzy3d.plot3d.rendering.ordering.AbstractOrderingStrategy

Packages that use AbstractOrderingStrategy
org.jzy3d.factories   
org.jzy3d.plot3d.rendering.ordering   
org.jzy3d.plot3d.rendering.scene   
 

Uses of AbstractOrderingStrategy in org.jzy3d.factories
 

Fields in org.jzy3d.factories declared as AbstractOrderingStrategy
static AbstractOrderingStrategy OrderingStrategyFactory.DEFAULT
           
 

Methods in org.jzy3d.factories that return AbstractOrderingStrategy
 AbstractOrderingStrategy OrderingStrategyFactory.getInstance()
           
 

Uses of AbstractOrderingStrategy in org.jzy3d.plot3d.rendering.ordering
 

Subclasses of AbstractOrderingStrategy in org.jzy3d.plot3d.rendering.ordering
 class BarycentreOrderingStrategy
          The BarycentreOrderingStrategy compare two AbstractDrawables by computing their respective distances to the Camera, which must be referenced prior to any comparison.
 class DefaultOrderingStrategy
          The default ordering strategy let drawables be displayed in their original order.
 

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

Fields in org.jzy3d.plot3d.rendering.scene declared as AbstractOrderingStrategy
protected  AbstractOrderingStrategy Graph.strategy
           
 

Methods in org.jzy3d.plot3d.rendering.scene that return AbstractOrderingStrategy
 AbstractOrderingStrategy Graph.getStrategy()
          Get the @Drawable ordering strategy.
 

Methods in org.jzy3d.plot3d.rendering.scene with parameters of type AbstractOrderingStrategy
 void Graph.setStrategy(AbstractOrderingStrategy strategy)
          Set the @Drawable ordering strategy.
 

Constructors in org.jzy3d.plot3d.rendering.scene with parameters of type AbstractOrderingStrategy
Graph(Scene scene, AbstractOrderingStrategy strategy)
           
Graph(Scene scene, AbstractOrderingStrategy strategy, boolean sort)