Skip to content

Latest commit

 

History

History
83 lines (60 loc) · 1.18 KB

File metadata and controls

83 lines (60 loc) · 1.18 KB

GenerateSolveMaze

SYNOPSIS

Function to generate a GUI (Windows forms) to build and solve random mazes

Script file

programming exercises\GenerateSolveMaze.ps1

SYNTAX

GenerateSolveMaze [[-YDimension] <Int32>] [[-XDimension] <Int32>] [[-CellSize] <Int32>]

DESCRIPTION

Just a fun programming excercise

EXAMPLES

-------------------------- EXAMPLE 1 --------------------------

GenerateSolveMaze

PARAMETERS

-YDimension

Number of rows of the maze. Defaults to 12

Type: Int32
Parameter Sets: (All)
Aliases: 

Required: False
Position: 1
Default value: 12
Accept pipeline input: False
Accept wildcard characters: False

-XDimension

Number of columns of the maze. Defaults to 15

Type: Int32
Parameter Sets: (All)
Aliases: 

Required: False
Position: 2
Default value: 15
Accept pipeline input: False
Accept wildcard characters: False

-CellSize

Cellsize of the start and end cells of the maze. Defaults to 30.

Type: Int32
Parameter Sets: (All)
Aliases: 

Required: False
Position: 3
Default value: 30
Accept pipeline input: False
Accept wildcard characters: False

INPUTS

OUTPUTS

NOTES

RELATED LINKS