Skip to content

Commit 1444cf0

Browse files
feat: Lucky turtle and random defaults ( Fixes PoshWeb#363, Fixes PoshWeb#366 )
Randomizing petal
1 parent 9d94c90 commit 1444cf0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Types/Turtle/Petal.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
#>
1111
param(
1212
[double]
13-
$Radius = 10,
13+
$Radius = $(Get-Random -Min 21 -Max 42),
1414

1515
[double]
16-
$Angle = 60
16+
$Angle = $(Get-Random -Min 30 -Max 60)
1717
)
1818

1919
$OppositeAngle = 180 - $Angle

0 commit comments

Comments
 (0)