summaryrefslogtreecommitdiffstats
path: root/libdimension/geometry.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdimension/geometry.c')
-rw-r--r--libdimension/geometry.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libdimension/geometry.c b/libdimension/geometry.c
index 5d14953..26ca628 100644
--- a/libdimension/geometry.c
+++ b/libdimension/geometry.c
@@ -140,11 +140,11 @@ dmnsn_matrix_inverse(dmnsn_matrix A)
if (Pdet == 0.0) {
/* If we can't invert P, try a more generic algorithm; this is very
- unlikely, but not impossible, eg.
- ( 1 1 0 0 )
- ( 1 1 1 0 )
- ( 0 1 1 0 )
- ( 0 0 0 1 )
+ * unlikely, but not impossible, eg.
+ * [ 1 1 0 0 ]
+ * [ 1 1 1 0 ]
+ * [ 0 1 1 0 ]
+ * [ 0 0 0 1 ]
*/
return dmnsn_matrix_inverse_generic(A);
}