Uses of Class
Transform2D

Uses of Transform2D in <Unnamed>
 

Methods in <Unnamed> that return Transform2D
 Transform2D Transform2D.add(Transform2D other)
          Returns the sum of the matrix elements of this Transform2D object (augend) and the parameter (addend) by calling Matrix2D's add method.
 Transform2D Transform2D.mul(Transform2D other)
          Returns the product of the matrix elements of this Transform2D object (multiplicand) and the parameter (multiplier) by calling Matrix2D's mul method.
 Transform2D Transform2D.sub(Transform2D other)
          Returns the difference of the matrix elements of this Transform2D object (minuend) and the parameter (subtrahend) by calling Matrix2D's sub method.
 

Methods in <Unnamed> with parameters of type Transform2D
 Transform2D Transform2D.add(Transform2D other)
          Returns the sum of the matrix elements of this Transform2D object (augend) and the parameter (addend) by calling Matrix2D's add method.
 void Point2DList.applyTransform(Transform2D transform)
          Modifier method applies the Transform2D matrix supplied by the parameter to each of the Point2D objects maintained in the ArrayList.
 Transform2D Transform2D.mul(Transform2D other)
          Returns the product of the matrix elements of this Transform2D object (multiplicand) and the parameter (multiplier) by calling Matrix2D's mul method.
 Transform2D Transform2D.sub(Transform2D other)
          Returns the difference of the matrix elements of this Transform2D object (minuend) and the parameter (subtrahend) by calling Matrix2D's sub method.
 

Constructors in <Unnamed> with parameters of type Transform2D
Transform2D(Transform2D transform2D)
          Constructs a Transform2D object by duplicating the elements of the Matrix2D object encapsulated by the Transform2D parameter