From 843b0a4c027cad33d0b5b5723927d304ca92532c Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Tue, 26 Apr 2022 08:09:14 +0300 Subject: [PATCH] comment for struct maze --- lib/ortho/maze.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/ortho/maze.h b/lib/ortho/maze.h index 6ce671f2d..7d687b28e 100644 --- a/lib/ortho/maze.h +++ b/lib/ortho/maze.h @@ -55,6 +55,13 @@ typedef struct cell { boxf bb; } cell; +/** + * @struct maze + * @brief available channels for orthogonal edges around nodes of @ref graph_t + * + * A maze is the result of partitioning free space around a graph's nodes by @ref mkMaze. + */ + typedef struct { int ncells, ngcells; cell* cells; /* cells not corresponding to graph nodes */ -- 2.40.0