Skip to content

Commit 0b43e75

Browse files
committed
Fixed some typos in comments and done some minor cleanup.
1 parent 546de85 commit 0b43e75

File tree

5 files changed

+216
-236
lines changed

5 files changed

+216
-236
lines changed

SvgFileType/LayersMode.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace SvgFileTypePlugin
1+
namespace SvgFileTypePlugin
82
{
93
public enum LayersMode
104
{

SvgFileType/PaintGroupBoundaries.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using Svg;
2+
using System;
3+
using System.Drawing;
4+
using System.Drawing.Drawing2D;
5+
6+
namespace SvgFileTypePlugin
7+
{
8+
// Used to determine boundaries of a group.
9+
public class PaintGroupBoundaries : SvgVisualElement
10+
{
11+
public SvgGroup RelatedGroup { get; set; }
12+
public bool IsStart { get; set; }
13+
public override RectangleF Bounds => throw new NotImplementedException();
14+
15+
public override SvgElement DeepCopy()
16+
{
17+
throw new NotImplementedException();
18+
}
19+
20+
public override GraphicsPath Path(ISvgRenderer renderer)
21+
{
22+
throw new NotImplementedException();
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)