times

open operator fun times(other: AffineTransform): ProjectionTransform
open operator fun times(other: ProjectionTransform): ProjectionTransform

Allows transforms to be combined sequentially.

val transformC = transformA * transformB

So applying transformC is equivalent to applying transformA then transformB.

See also