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 dcb4575 commit cafdf66Copy full SHA for cafdf66
Types/Turtle/get_PathAnimation.ps1
@@ -1,3 +1,17 @@
1
+<#
2
+.SYNOPSIS
3
+ Gets the Turtle's Path Animation
4
+.DESCRIPTION
5
+ Gets any path animations associated with the current turtle.
6
+.EXAMPLE
7
+ turtle flower PathAnimation ([Ordered]@{
8
+ attributeName = 'fill' ; values = "#4488ff;#224488;#4488ff" ; repeatCount = 'indefinite'; dur = "4.2s" # ; additive = 'sum'
9
+ }, [Ordered]@{
10
+ attributeName = 'stroke' ; values = "#224488;#4488ff;#224488" ; repeatCount = 'indefinite'; dur = "2.1s" # ; additive = 'sum'
11
12
+ type = 'rotate' ; values = 0, 360 ;repeatCount = 'indefinite'; dur = "41s"
13
+ }) save ./AnimatedFlower.svg
14
+#>
15
if ($this.'.PathAnimation') {
16
return $this.'.PathAnimation'
17
}
0 commit comments