MatrixTransform constructor
MatrixTransform({})
Implementation
MatrixTransform({
double? angle,
Vector2? offset,
Vector2? scale,
Vector2? skew,
Vector2? position,
}) : _angle = angle ?? 0,
_offset = offset ?? Vector2.zero(),
_scale = scale ?? Vector2.all(1),
_skew = skew ?? Vector2.zero(),
_position = position ?? Vector2.zero();