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.
Turtle.Save()
1 parent 038fb46 commit 8495dc7Copy full SHA for 8495dc7
Turtle.types.ps1xml
@@ -949,6 +949,29 @@ $this.Heading += $Angle
949
return $this
950
</Script>
951
</ScriptMethod>
952
+ <ScriptMethod>
953
+ <Name>Save</Name>
954
+ <Script>
955
+ <#
956
+.SYNOPSIS
957
+ Saves the turtle.
958
+.DESCRIPTION
959
+ Saves the current turtle to a file.
960
+.LINK
961
+ Save-Turtle
962
+#>
963
+param(
964
+[string]
965
+$FilePath,
966
+
967
968
+$Property
969
+)
970
971
+return $this | Save-Turtle $FilePath -Property $Property
972
973
+ </Script>
974
+ </ScriptMethod>
975
<ScriptMethod>
976
<Name>SierpinskiArrowheadCurve</Name>
977
<Script>
0 commit comments