Skip to content

Commit ef4c00d

Browse files
feat: <path> support
1 parent 26fc7dc commit ef4c00d

7 files changed

Lines changed: 534 additions & 76 deletions

File tree

FreeFrame/Components/Importer.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ static public (List<Shape>, bool) ImportFromStream(Stream pStream)
3939
case "circle":
4040
shapes.Add(new SVGCircle(reader));
4141
break;
42+
case "line":
43+
shapes.Add(new SVGLine(reader));
44+
break;
4245
default:
4346
compatibilityFlag = true; // If an element is unknow, the flag is trigger
4447
break;

0 commit comments

Comments
 (0)