From: Costa Shulyupin Date: Tue, 26 Apr 2022 05:09:14 +0000 (+0300) Subject: comment for struct maze X-Git-Tag: 4.0.0~49^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=843b0a4c027cad33d0b5b5723927d304ca92532c;p=graphviz comment for struct maze --- 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 */