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
775ed568
Commit
775ed568
authored
Jun 04, 2013
by
Tebjan Halm
Browse files
fixed corner radius wrong value bug
parent
1fcb5709
Changes
2
Show whitespace changes
Inline
Side-by-side
Source/Basic Shapes/SvgRectangle.cs
View file @
775ed568
...
@@ -26,6 +26,8 @@ namespace Svg
...
@@ -26,6 +26,8 @@ namespace Svg
{
{
_width
=
new
SvgUnit
(
0.0f
);
_width
=
new
SvgUnit
(
0.0f
);
_height
=
new
SvgUnit
(
0.0f
);
_height
=
new
SvgUnit
(
0.0f
);
_cornerRadiusX
=
new
SvgUnit
(
0.0f
);
_cornerRadiusY
=
new
SvgUnit
(
0.0f
);
}
}
/// <summary>
/// <summary>
...
...
Source/SvgDefinitionDefaults.cs
View file @
775ed568
...
@@ -22,6 +22,8 @@ namespace Svg
...
@@ -22,6 +22,8 @@ namespace Svg
_defaults
[
"clip-rule"
]
=
"nonzero"
;
_defaults
[
"clip-rule"
]
=
"nonzero"
;
_defaults
[
"transform"
]
=
""
;
_defaults
[
"transform"
]
=
""
;
_defaults
[
"rx"
]
=
"0"
;
_defaults
[
"ry"
]
=
"0"
;
_defaults
[
"fill"
]
=
"Black"
;
_defaults
[
"fill"
]
=
"Black"
;
_defaults
[
"fill-opacity"
]
=
"1"
;
_defaults
[
"fill-opacity"
]
=
"1"
;
...
...
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