Design
• Use the maze design worksheet, grid paper, or an online graphing tool to
create your design on a coordinate plane. The origin should be in the center
of the touch screen and both axes should be labeled in intervals of 0.25,
0.5, or 1.
• Plot a starting point and ending point for the maze in different quadrants.
Record the ordered pair for each point on your coding worksheet. (To make
the maze more challenging, use opposite quadrants: I and III or II and IV.)
• Draw at least two different polygons in each quadrant and record the
coordinates of each vertex. These polygons will create obstacles that players
must move around. Place them strategically for a challenging maze. (Do not
allow a straight path between the starting and ending points
7 answers
• Use line segments to connect the vertices of each polygon, creating walls for
the maze. These walls should not intersect with each other or with the starting
and ending points.
• Once you have completed your maze design, check that it is solvable. A maze
is considered solvable if there is a clear path between the starting and ending
points, without crossing any walls. Make any necessary adjustments to ensure
that your maze is solvable.
• Label each polygon with a different number or letter to indicate the order in
which they should be navigated for a successful completion of the maze.
• Now that your maze is complete, transfer the coordinates of each point and
polygon to your coding platform.
create your design on a coordinate plane. The origin should be in the center
of the touch screen and both axes should be labeled in intervals of 0.25,
0.5, or 1.
```
+---------------------+
| |
| +----+ |
| | | |
| +----+ |
| |
+---------+----+ |
| | |
| | |
| | |
| | |
| +---------+------+
| | |
| +----+ | +----+
| | | | | |
| +----+ | +----+
| | |
+---------------------+----------+
Starting point: (-2, 1.5)
Ending point: (2, -1.5)
Polygons:
Polygon 1: (-1,0), (-1,1), (0,1), (0,0)
Polygon 2: (1,0), (1,-1), (0,-1), (0,0)
Polygon 3: (-1,0), (-1,-1), (-2,-1), (-2,1), (-1,1)
```
In this example, the `+` signs represent the intersection of the grid lines, the `|` and `-` signs represent the grid lines themselves, and the `+----+` and `| |` combinations represent the polygons in the maze. The starting point is marked with an `S` and the ending point with an `E`.