From dba0928a145d1320095f3cab5b26cd42385c3d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 1 Feb 2019 12:19:31 +0100 Subject: [PATCH] doc: mention Debug in the matrix data layout docs. --- doc/matrix-vector.dox | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/matrix-vector.dox b/doc/matrix-vector.dox index af005bf54..6c5ba44af 100644 --- a/doc/matrix-vector.dox +++ b/doc/matrix-vector.dox @@ -275,5 +275,9 @@ implications and it may differ from what is common in mathematics: to operate with transposed matrices or use the slower non-transposed alternative of the algorithm. + +Note that the @ref Corrade::Utility::Debug utility always prints the matrices +in the expected layout --- rows are rows and columns are columns. You are +encouraged to use it for data visualization purposes. */ }