aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-23 23:08:52 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-08-23 23:08:52 +0100
commitb4d99eb15e6337c22c011acaca25b0ce8e946e3d (patch)
tree933d75b179660153fb62746d67d5366e5405dc3a /include
parentbc982b84ec3e1085c440e4d5ea1de597aee63565 (diff)
downloadYAGE-b4d99eb15e6337c22c011acaca25b0ce8e946e3d.tar.gz
YAGE-b4d99eb15e6337c22c011acaca25b0ce8e946e3d.zip
Improving settings and chaning \ to @.
Diffstat (limited to 'include')
-rw-r--r--include/YAGE/Math/matrix.hpp24
1 files changed, 13 insertions, 11 deletions
diff --git a/include/YAGE/Math/matrix.hpp b/include/YAGE/Math/matrix.hpp
index 999d4274..866b46e2 100644
--- a/include/YAGE/Math/matrix.hpp
+++ b/include/YAGE/Math/matrix.hpp
@@ -6,15 +6,17 @@
* ----------------------------------------------------------------------------
*/
-/** \file matrix.hpp Templated matrix class
- *
- * Matrix
- * ======
- *
- * This is a very general matrix class that can then be inherited by
- * vectors and other similar data structures to minimize code
- * density.
- */
+/// @file
+
+/** Templated matrix class
+ *
+ * Matrix
+ * ======
+ *
+ * This is a very general matrix class that can then be inherited by
+ * vectors and other similar data structures to minimize code
+ * density.
+ */
#ifndef YAGE_MATH_MATRIX_HPP
#define YAGE_MATH_MATRIX_HPP
@@ -31,7 +33,7 @@ namespace yage {
template <int Rows, int Cols, class Type>
class Matrix;
-/** \internal Namespace for internal details.
+/** @internal Namespace for internal details.
*
* Detail Namespace
* ================
@@ -40,7 +42,7 @@ class Matrix;
*/
namespace detail {
-/** \internal Internal Row class used by the Matrix class to return the
+/** @internal Internal Row class used by the Matrix class to return the
* internal data structure of the Matrix.
*
* Row