Commit 84b71ceb authored by Tebjan Halm's avatar Tebjan Halm
Browse files

a few defaults and version bump

parent bc109e1f
...@@ -137,7 +137,8 @@ namespace Svg ...@@ -137,7 +137,8 @@ namespace Svg
/// </summary> /// </summary>
public SvgCircle() public SvgCircle()
{ {
CenterX = new SvgUnit(0.0f);
CenterY = new SvgUnit(0.0f);
} }
......
...@@ -28,6 +28,8 @@ namespace Svg ...@@ -28,6 +28,8 @@ namespace Svg
_height = new SvgUnit(0.0f); _height = new SvgUnit(0.0f);
_cornerRadiusX = new SvgUnit(0.0f); _cornerRadiusX = new SvgUnit(0.0f);
_cornerRadiusY = new SvgUnit(0.0f); _cornerRadiusY = new SvgUnit(0.0f);
_x = new SvgUnit(0.0f);
_y = new SvgUnit(0.0f);
} }
/// <summary> /// <summary>
......
...@@ -31,5 +31,5 @@ using System.Runtime.InteropServices; ...@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("0.5.2.*")] [assembly: AssemblyVersion("1.0.1.*")]
[assembly: AssemblyFileVersion("0.5.2.0")] [assembly: AssemblyFileVersion("1.0.1.*")]
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