Commit 8c10c2e6 authored by Matt Bowers's avatar Matt Bowers
Browse files

Embedded transformations

Embedded transformations were not being applied correctly; they were
being done in reverse order.
parent acce6914
...@@ -161,7 +161,7 @@ namespace Svg ...@@ -161,7 +161,7 @@ namespace Svg
foreach (SvgTransform transformation in this.Transforms) foreach (SvgTransform transformation in this.Transforms)
{ {
transformMatrix.Multiply(transformation.Matrix); transformMatrix.Multiply(transformation.Matrix, MatrixOrder.Append);
} }
renderer.Transform = transformMatrix; renderer.Transform = transformMatrix;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment