Commit 4ad323d5 authored by owaits's avatar owaits
Browse files

No commit message

No commit message
parent a826856b
......@@ -7,6 +7,7 @@ using System.Xml.Serialization;
using System.Xml;
using System.Diagnostics;
using Svg.Pathing;
using Svg.Transforms;
namespace Svg
{
......@@ -61,6 +62,14 @@ namespace Svg
segment.AddToPath(_path);
}
if (base.Transforms != null)
{
foreach (SvgTransform transform in base.Transforms)
{
_path.Transform(transform.Matrix);
}
}
this.IsPathDirty = false;
}
return _path;
......
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