All Packages Class Hierarchy This Package Previous Next Index
Interface quicktime.app.image.Transformable
- public interface Transformable
This interface is used so that objects that can have their visual appearance transformed
through matrix manipulation can return their current matrix and set a new transformed
matrix.
-
getInitialSize()
- This method returns the original size before the transformations
specified in the returned matrix are applied.
-
getMatrix()
- This method returns the current matrix of the Transformable object.
-
setMatrix(Matrix)
- This method sets the current matrix of the Transformable object to
the new matrix.
getInitialSize
public abstract Dimension getInitialSize() throws QTException
- This method returns the original size before the transformations
specified in the returned matrix are applied.
getMatrix
public abstract Matrix getMatrix() throws QTException
- This method returns the current matrix of the Transformable object.
setMatrix
public abstract void setMatrix(Matrix matrix) throws QTException
- This method sets the current matrix of the Transformable object to
the new matrix.
All Packages Class Hierarchy This Package Previous Next Index