Uses of Interface
org.scilab.forge.scirenderer.tranformations.Transformation

Packages that use Transformation
org.scilab.forge.scirenderer.clipping   
org.scilab.forge.scirenderer.implementation.g2d.clipping   
org.scilab.forge.scirenderer.implementation.g2d.motor   
org.scilab.forge.scirenderer.implementation.jogl.clipping   
org.scilab.forge.scirenderer.ruler   
org.scilab.forge.scirenderer.tranformations   
 

Uses of Transformation in org.scilab.forge.scirenderer.clipping
 

Methods in org.scilab.forge.scirenderer.clipping that return Transformation
 Transformation ClippingPlane.getTransformation()
          Return the coordinate transformation for the plane.
 

Methods in org.scilab.forge.scirenderer.clipping with parameters of type Transformation
 void ClippingPlane.setTransformation(Transformation transformation)
          Set the coordinate transformation for the plane.
 

Uses of Transformation in org.scilab.forge.scirenderer.implementation.g2d.clipping
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.clipping that return Transformation
 Transformation G2DClippingPlane.getTransformation()
           
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.clipping with parameters of type Transformation
 void G2DClippingPlane.setTransformation(Transformation transformation)
           
 

Uses of Transformation in org.scilab.forge.scirenderer.implementation.g2d.motor
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.motor that return Transformation
 Transformation Motor3D.getCurrentSingleTransformation()
           
 Transformation Motor3D.getCurrentTransformation()
           
 

Methods in org.scilab.forge.scirenderer.implementation.g2d.motor with parameters of type Transformation
 void Motor3D.setTransformation(Transformation transf, Transformation single)
          Set the current transformation
 

Constructors in org.scilab.forge.scirenderer.implementation.g2d.motor with parameters of type Transformation
SpritedRectangle(Vector3d vertex, Transformation transf, java.awt.image.BufferedImage image, Texture.Filter filter)
           
 

Uses of Transformation in org.scilab.forge.scirenderer.implementation.jogl.clipping
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.clipping that return Transformation
 Transformation JoGLClippingPlane.getTransformation()
           
 

Methods in org.scilab.forge.scirenderer.implementation.jogl.clipping with parameters of type Transformation
 void JoGLClippingPlane.setTransformation(Transformation transformation)
           
 

Uses of Transformation in org.scilab.forge.scirenderer.ruler
 

Methods in org.scilab.forge.scirenderer.ruler with parameters of type Transformation
 RulerDrawingResult RulerDrawer.computeRuler(DrawingTools drawingTools, RulerModel model, Transformation canvasProjection)
          Compute different parameters on a ruler
 

Uses of Transformation in org.scilab.forge.scirenderer.tranformations
 

Methods in org.scilab.forge.scirenderer.tranformations that return Transformation
static Transformation TransformationFactory.getAffineTransformation(Vector3d s, Vector3d t)
          Return an affine transformation aX + b
 Transformation TransformationManagerImpl.getCanvasProjection()
           
 Transformation TransformationManager.getCanvasProjection()
          Return the canvas projection matrix.
 Transformation TransformationManagerImpl.getG2DProjection()
           
 Transformation TransformationManager.getG2DProjection()
          Return the canvas projection matrix for Graphics2D.
 Transformation TransformationManagerImpl.getG2DSingleProjection()
           
 Transformation TransformationManager.getG2DSingleProjection()
          Return the projection matrix (no modelView).
 Transformation TransformationManagerImpl.getG2DWindowProjection()
           
 Transformation TransformationManager.getG2DWindowProjection()
          Return the window projection matrix for Graphics2D.
static Transformation TransformationFactory.getIdentity()
          Return the identity transformation.
 Transformation Transformation.getInverseTransformation()
          Return the inverse transformation.
 Transformation TransformationManagerImpl.getInverseWindowTransformation()
           
 Transformation TransformationManager.getInverseWindowTransformation()
          Return the inverse of window transformation.
static Transformation TransformationFactory.getOrthographic(double left, double right, double bottom, double top, double near, double far)
          Return an orthographic transformation.
static Transformation TransformationFactory.getPerspectiveTransformation(double near, double far, double fov)
          Return a perspective transformation.
static Transformation TransformationFactory.getPreferredAspectRatioTransformation(java.awt.Dimension dimension, double preferredRatio)
          Return the 'preferred aspect ratio transformation'
static Transformation TransformationFactory.getRotationTransformation(double angle, double x, double y, double z)
          Return a rotation transformation.
static Transformation TransformationFactory.getRotationTransformation(Rotation q)
          Return a rotation transformation.
static Transformation TransformationFactory.getScaleTransformation(double s)
          Return a scale transformation.
static Transformation TransformationFactory.getScaleTransformation(double x, double y, double z)
          Return a scale transformation.
 Transformation TransformationManagerImpl.getTransformation()
           
 Transformation TransformationManager.getTransformation()
          Return the top scene transformation.
static Transformation TransformationFactory.getTranslateTransformation(double x, double y, double z)
          Return a translate transformation.
 Transformation TransformationManagerImpl.getWindowTransformation()
           
 Transformation TransformationManager.getWindowTransformation()
          Return the window transformation.
 Transformation Transformation.leftTimes(Transformation transformation)
          Return this left times the given transformation.
 Transformation TransformationStackImpl.peek()
           
 Transformation TransformationStack.peek()
          Return the top transformation.
 Transformation TransformationStackImpl.pop()
           
 Transformation TransformationStack.pop()
          Pop one matrix on the stack.
 Transformation Transformation.rightTimes(Transformation transformation)
          Return this right times the given transformation.
 

Methods in org.scilab.forge.scirenderer.tranformations with parameters of type Transformation
 void TransformationStackListener.changed(TransformationStack transformationStack, TransformationStack.TransformationStackEvent event, Transformation top)
          Called when an event occur in the listened transformation stack.
protected  void TransformationStackImpl.fireChanged(TransformationStack.TransformationStackEvent event, Transformation top)
          Fire a change event.
 Transformation Transformation.leftTimes(Transformation transformation)
          Return this left times the given transformation.
 void TransformationStackImpl.push(Transformation transformation)
           
 void TransformationStack.push(Transformation transformation)
          Push the given transformation on the stack.
 void TransformationStackImpl.pushLeftMultiply(Transformation transformation)
           
 void TransformationStack.pushLeftMultiply(Transformation transformation)
          Push the given transformation left time the peek on the stack.
 void TransformationStackImpl.pushRightMultiply(Transformation transformation)
           
 void TransformationStack.pushRightMultiply(Transformation transformation)
          Push the given transformation right time the peek on the stack.
 Transformation Transformation.rightTimes(Transformation transformation)
          Return this right times the given transformation.