Types/Turtle/get_MarkerStart.ps1
| 
                                <# .SYNOPSIS Gets a Turtle's start marker .DESCRIPTION Gets the start marker used on the line drawn by the turtle .EXAMPLE turtle viewbox 200 start 50 50 rotate 45 forward 100 markerStart ( turtle rotate -90 turtleMonotile -42 fill context-fill stroke context-stroke ) fill 'currentColor' strokewidth '3%' save ./marker.svg .EXAMPLE turtle viewbox 200 start 50 50 rotate 45 forward 100 markerStart ( turtle rotate -90 polygon 42 3 fill context-fill stroke context-stroke ) fill 'currentColor' strokewidth '3%' save ./marker.svg #> return $this.PathAttribute['marker-start']  |