AffineTransform.Multiply

AffineTransform.Multiply method

Multiplies a by b.

public static AffineTransform Multiply(ref AffineTransform a, ref AffineTransform b)
ParameterTypeDescription
aAffineTransform&The left transform.
bAffineTransform&The right transform.

Return Value

A new AffineTransform structure.

The returned value will use a decomposed representation it these two conditions are met:

  1. Arguments a and b are also in decomposed form.
  2. The result of the operation is decomposable.

Otherwise the returned value will use a Matrix representation.

See Also