Skip to content

Commit

Permalink
Update GeometryElement.vb
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Jan 17, 2025
1 parent 59adbd5 commit d4189e2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ Namespace SVG
.X = x + DirectCast(svgElement, SvgCircle).CX,
.Y = y + DirectCast(svgElement, SvgCircle).CY
}
ElseIf TypeOf svgElement Is SvgPolygon Then
Yield New GeometryElement With {
.svgElement = svgElement,
.X = x,
.Y = y
}
End If
Next
End Function
Expand Down

0 comments on commit d4189e2

Please sign in to comment.