From 1502fa4b64ee8b838388e289809dbd123389610b Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 7 Mar 2021 20:20:48 +0800 Subject: [PATCH] update doc --- docs/lib3x-mz_square_cells.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lib3x-mz_square_cells.md b/docs/lib3x-mz_square_cells.md index fed221b9..ca79b9a1 100644 --- a/docs/lib3x-mz_square_cells.md +++ b/docs/lib3x-mz_square_cells.md @@ -1,6 +1,6 @@ # mz_square_cells -This function returns cell data of a square-based maze. The data is a list of cells. A cell has the data structure `[x, y, type, visited]`. `x` and `y` are 0-based. `x` means x-th column and `y` means y-th row for a cell. The value of `type` can be `0`, `1`, ``2`, `3` or `4`. Setting them to constants is convenient. +This function returns cell data of a square maze. The data is a list of cells. A cell has the data structure `[x, y, type, visited]`. `x` and `y` are 0-based. `x` means x-th column and `y` means y-th row for a cell. The value of `type` can be `0`, `1`, ``2`, `3` or `4`. Setting them to constants is convenient. NO_WALL = 0; TOP_WALL = 1;