AffineTransform
Tx
to this AffineTransform
Cx in the most commonly useful way to provide a new user space that is mapped to the former user space by Tx
. Cx is updated to perform the combined transformation. Transforming a point p by the updated transform Cx' is equivalent to first transforming p by Tx
and then transforming the result by the original transform Cx like this: Cx'(p) = Cx(Tx(p)) In matrix notation, if this transform Cx is represented by the matrix [this] and Tx
is represented by the matrix [Tx] then this method does the following: [this] = [this] x [Tx]@param Tx the
AffineTransform
object to beconcatenated with this AffineTransform
object.
@see #preConcatenate
@since 1.2
Change the tail of this list to point to the given list, so that this list becomes the list of the concatenation of the elements of both lists. This is a side-effecting operation on this list; for a non side-effecting alternative, see {@link #append}. Due to the problem of maintaining the URI invariant on a node, this operation will throw an exception if an attempt is made to concatenate onto an empty list. To avoid this, test for an empty list: if true replace the empty list with the argument list, otherwise proceed with the concatenate as usual. An alternative solution is to use {@link #append} and replace the original list with the return value.
@param list The argument list to concatenate to this list @exception EmptyListUpdateException if this list is the nil listAffineTransform
Tx
to this AffineTransform
Cx in the most commonly useful way to provide a new user space that is mapped to the former user space by Tx
. Cx is updated to perform the combined transformation. Transforming a point p by the updated transform Cx' is equivalent to first transforming p by Tx
and then transforming the result by the original transform Cx like this: Cx'(p) = Cx(Tx(p)) In matrix notation, if this transform Cx is represented by the matrix [this] and Tx
is represented by the matrix [Tx] then this method does the following: [this] = [this] x [Tx]@param Tx the
AffineTransform
object to beconcatenated with this AffineTransform
object.
@see #preConcatenate
@since 1.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|