Uses of Class
org.opensourcephysics.numerics.Matrix2DTransformation

Packages that use Matrix2DTransformation
org.opensourcephysics.numerics   
 

Uses of Matrix2DTransformation in org.opensourcephysics.numerics
 

Methods in org.opensourcephysics.numerics that return Matrix2DTransformation
static Matrix2DTransformation Matrix2DTransformation.createAlignmentTransformation(double[] v1, double[] v2)
          Instantiates a rotation that aligns the first vector with the second vector.
static Matrix2DTransformation Matrix2DTransformation.rotation(double theta)
          Creates a 2D transformation representing a rotation about the origin by the given angle.
static Matrix2DTransformation Matrix2DTransformation.rotation(double theta, double anchorx, double anchory)
          Creates a 2D transformation representing a rotation about the origin by the given angle around the given axis.
 

Methods in org.opensourcephysics.numerics with parameters of type Matrix2DTransformation
 void Matrix2DTransformation.multiply(Matrix2DTransformation trans)
          Multiplies (concatenates) this transformation matrix with the given transformation.