Skip to content

Commit fb9dea4

Browse files
author
James Brundage
committed
feat: Turtle.get_PathElement ( Fixes #32 )
1 parent 17ab67d commit fb9dea4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Types/Turtle/get_PathElement.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@(
2+
"<path id='turtle-path' d='$($this.PathData)' stroke='$(
3+
if ($this.Stroke) { $this.Stroke } else { 'black' }
4+
)' stroke-width='$(
5+
if ($this.StrokeWidth) { $this.StrokeWidth } else { '0.1%' }
6+
)' fill='transparent' class='foreground-stroke' />"
7+
) -as [xml]

0 commit comments

Comments
 (0)