Browse Source

Fix build

pull/386/head
James Jackson-South 8 years ago
parent
commit
163f4d2e09
  1. 1
      src/ImageSharp/Processing/Processors/Transforms/TransformProcessor.cs

1
src/ImageSharp/Processing/Processors/Transforms/TransformProcessor.cs

@ -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;

Loading…
Cancel
Save