invoke

operator fun invoke(scaleX: Double = 1.0, shearX: Double = 0.0, translateX: Double = 0.0, scaleY: Double = 1.0, shearY: Double = 0.0, translateY: Double = 0.0): AffineTransform2D

Creates a transform with the given properties.

Parameters

scaleX

how much to scale the x direction

shearX

how much to shear the x direction

translateX

how much to translate in the x direction

scaleY

how much to scale the y direction

shearY

how much to shear the y direction

translateY

how much to translate in the y direction


operator fun invoke(m00: Double = 1.0, m01: Double = 0.0, m02: Double = 0.0, m03: Double = 0.0, m10: Double = 0.0, m11: Double = 1.0, m12: Double = 0.0, m13: Double = 0.0, m20: Double = 0.0, m21: Double = 0.0, m22: Double = 1.0, m23: Double = 0.0): AffineTransform

Creates a transform with the given properties.