times

abstract operator fun times(other: AffineTransform): AffineTransform

Allows transforms to be combined sequentially.

val transformC = transformA * transformB

So applying transformC is equivalent to applying transformA then transformB.

See also