Uses of Class
org.jzy3d.plot3d.transform.Transform

Packages that use Transform
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.rendering.ordering   
org.jzy3d.plot3d.rendering.scene   
org.jzy3d.plot3d.transform Provides management of OpenGL ModelView Matrix for objects transformations. 
 

Uses of Transform in org.jzy3d.picking
 

Methods in org.jzy3d.picking with parameters of type Transform
 void IPickable.setTransform(Transform transform)
           
 

Uses of Transform in org.jzy3d.plot3d.primitives
 

Methods in org.jzy3d.plot3d.primitives that return Transform
 Transform AbstractDrawable.getTransform()
          Get object's transformation that is applied at the beginning of a call to AbstractDrawable.draw(GL,GLU,Camera).
 Transform AbstractComposite.getTransform()
          Return the transform that was affected to this composite.
 

Methods in org.jzy3d.plot3d.primitives with parameters of type Transform
 void Parallelepiped.setTransform(Transform transform)
           
 void AbstractDrawable.setTransform(Transform transform)
          Set object's transformation that is applied at the beginning of a call to AbstractDrawable.draw(GL,GLU,Camera).
 void AbstractComposite.setTransform(Transform transform)
          Delegate transforming iteratively to all Drawable of this composite and stores the given transform for keeping the ability of retrieving it.
 

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

Methods in org.jzy3d.plot3d.rendering.ordering that return Transform
 Transform AbstractOrderingStrategy.getTransform()
           
 

Methods in org.jzy3d.plot3d.rendering.ordering with parameters of type Transform
 void AbstractOrderingStrategy.setAll(javax.media.opengl.GL gl, javax.media.opengl.glu.GLU glu, Camera camera, Transform transform)
           
 void AbstractOrderingStrategy.setTransform(Transform transform)
           
 

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

Methods in org.jzy3d.plot3d.rendering.scene that return Transform
 Transform Graph.getTransform()
          Return the transform that was affected to this composite.
 

Methods in org.jzy3d.plot3d.rendering.scene with parameters of type Transform
 void Graph.setTransform(Transform transform)
          Delegate transforming iteratively to all Drawable of this graph and stores the given transform for keeping the ability of retrieving it.
 

Uses of Transform in org.jzy3d.plot3d.transform
 

Methods in org.jzy3d.plot3d.transform with parameters of type Transform
 void Transform.add(Transform transform)
          Appends a Transform to the current Transform.
 

Constructors in org.jzy3d.plot3d.transform with parameters of type Transform
Transform(Transform transform)
          Initialize a list of Transformer with the sequence hold by the given Transform.