We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67032ec commit 0478510Copy full SHA for 0478510
Examples/InscribedCircle.turtle.ps1
@@ -5,10 +5,10 @@
5
A simple example of turtles containing turtles
6
#>
7
$inscribedCircle =
8
- turtle width 42 height 42 turtles @{
+ turtle width 42 height 42 turtles ([Ordered]@{
9
'square' = turtle square 42 fill '#4488ff' stroke '#224488'
10
'circle' = turtle circle 21 fill '#224488' stroke '#4488ff'
11
- }
+ })
12
13
$inscribedCircle | Save-Turtle ./InscribedCircle.svg
14
$inscribedCircle | Save-Turtle ./InscribedCirclePattern.svg Pattern
0 commit comments