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