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

Packages that use Transform
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.pickable   
org.jzy3d.plot3d.primitives.textured   
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.plot3d.primitives
 

Fields in org.jzy3d.plot3d.primitives declared as Transform
protected  Transform AbstractDrawable.transform
           
protected  Transform AbstractComposite.transform
           
 

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 #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 #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.primitives.pickable
 

Methods in org.jzy3d.plot3d.primitives.pickable with parameters of type Transform
 void Pickable.setTransform(Transform transform)
           
 

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

Fields in org.jzy3d.plot3d.primitives.textured declared as Transform
protected  Transform DrawableTexture.textureScale
           
 

Methods in org.jzy3d.plot3d.primitives.textured that return Transform
 Transform DrawableTexture.getTextureScale()
           
 

Methods in org.jzy3d.plot3d.primitives.textured with parameters of type Transform
 void DrawableTexture.setTextureScale(Transform textureScale)
           
 

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

Fields in org.jzy3d.plot3d.rendering.ordering declared as Transform
protected  Transform AbstractOrderingStrategy.transform
           
 

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.GL2 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
 

Fields in org.jzy3d.plot3d.rendering.scene declared as Transform
protected  Transform Graph.transform
           
 

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.