Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
4ad323d5
Commit
4ad323d5
authored
Nov 01, 2010
by
owaits
Browse files
No commit message
No commit message
parent
a826856b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Paths/SvgPath.cs
View file @
4ad323d5
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment