]> granicus.if.org Git - graphviz/commitdiff
partition.h: add doxygen comments
authorCosta Shulyupin <constantine.shulyupin@gmail.com>
Sat, 28 May 2022 04:11:52 +0000 (07:11 +0300)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 3 Aug 2022 00:31:31 +0000 (17:31 -0700)
lib/ortho/partition.h

index 35a15c7a27fa485474ecabf1171cd65bcdb6b995..58960b3cc70aa07c36238f710e6b25e2fdb501e6 100644 (file)
@@ -1,3 +1,8 @@
+/**
+ * @file
+ * @brief function @ref partition, subroutine of @ref mkMaze
+ */
+
 /*************************************************************************
  * Copyright (c) 2011 AT&T Intellectual Property 
  * All rights reserved. This program and the accompanying materials
 
 #include <ortho/maze.h>
 
+/**
+ * @brief partitions space around cells (nodes) into rectangular tiles
+ * @param[in] cells rectangular borders of user's input graph's nodes
+ * @param[in] bb range of the space to partition
+ * @param[out] nrects number of tiles
+ * @returns array of the tiles
+ */
+
 boxf* partition(cell* cells, int ncells, int* nrects, boxf bb);