Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Turtle
0.1.1
Types/Turtle/Rotate.ps1
<#
.SYNOPSIS
Rotates the turtle.
.DESCRIPTION
Rotates the turtle by the specified angle.
#>
param
(
[double]
$Angle
=
90
)
$this
.
Heading
+=
$Angle
return
$this