summaryrefslogtreecommitdiff
path: root/include/common/matrix.h
diff options
context:
space:
mode:
authorpacien2017-12-09 01:59:50 +0100
committerpacien2017-12-09 01:59:50 +0100
commitf910579e66a1495c4c1c97e2b99ea178d9d194ee (patch)
treeae08661576bf082bfb8a84e29e7b481044d56956 /include/common/matrix.h
parentcc1f6d08e843a2d80e7d536ff71535aaca15f318 (diff)
downloadmorpher-f910579e66a1495c4c1c97e2b99ea178d9d194ee.tar.gz
Add proper struct documentation
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'include/common/matrix.h')
-rw-r--r--include/common/matrix.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/common/matrix.h b/include/common/matrix.h
index 726a8ab..fe4a12a 100644
--- a/include/common/matrix.h
+++ b/include/common/matrix.h
@@ -12,8 +12,12 @@
12#include "geom.h" 12#include "geom.h"
13 13
14/** 14/**
15 * Type: IntSquareMatrix 15 * Struct: IntSquareMatrix
16 * Represents a square integer matrix. 16 * Represents a square integer matrix.
17 *
18 * Fields:
19 * **elements - NULL-terminated array of element pointers
20 * dim - dimension
17 */ 21 */
18typedef struct { 22typedef struct {
19 IntVector **elements; 23 IntVector **elements;