|
|
@ -30,7 +30,6 @@ namespace SixLabors.ImageSharp.Processing.Processors |
|
|
public TransformProcessor(Matrix3x2 matrix, IResampler sampler) |
|
|
public TransformProcessor(Matrix3x2 matrix, IResampler sampler) |
|
|
: base(sampler) |
|
|
: base(sampler) |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
// Tansforms are inverted else the output is the opposite of the expected.
|
|
|
// Tansforms are inverted else the output is the opposite of the expected.
|
|
|
Matrix3x2.Invert(matrix, out matrix); |
|
|
Matrix3x2.Invert(matrix, out matrix); |
|
|
this.TransformMatrix = matrix; |
|
|
this.TransformMatrix = matrix; |
|
|
|