From 21337dafc04c4ce84e3f1cad43be1a348bb55e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 1 Jan 2013 19:45:31 +0100 Subject: [PATCH] Doc++ --- src/Math/Geometry/Rectangle.h | 6 +++--- src/Math/Vector2.h | 2 +- src/Math/Vector3.h | 2 +- src/Math/Vector4.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Math/Geometry/Rectangle.h b/src/Math/Geometry/Rectangle.h index 18fed134a..5917c1f5b 100644 --- a/src/Math/Geometry/Rectangle.h +++ b/src/Math/Geometry/Rectangle.h @@ -27,9 +27,9 @@ namespace Magnum { namespace Math { namespace Geometry { @brief %Rectangle Helper class for storing axis-aligned rectangles consisting of bottom left and -top right corner positions. Bottom left position is inclusive, while top right -position is exclusive. -@see Magnum::Rectanglei +top right corner positions with origin in bottom left. Bottom/left positions +are inclusive, while top/right positions are exclusive. +@see Magnum::Rectangle, Magnum::Rectanglei */ template class Rectangle { public: diff --git a/src/Math/Vector2.h b/src/Math/Vector2.h index 24297213a..f27be7c48 100644 --- a/src/Math/Vector2.h +++ b/src/Math/Vector2.h @@ -28,7 +28,7 @@ namespace Magnum { namespace Math { @tparam T Data type See @ref matrix-vector for brief introduction. -@see Magnum::Vector2 +@see Magnum::Vector2, Magnum::Vector2i, Magnum::Vector2ui @configurationvalueref{Magnum::Math::Vector2} */ template class Vector2: public Vector<2, T> { diff --git a/src/Math/Vector3.h b/src/Math/Vector3.h index 52250101b..1e81d7f8e 100644 --- a/src/Math/Vector3.h +++ b/src/Math/Vector3.h @@ -30,7 +30,7 @@ namespace Magnum { namespace Math { See @ref matrix-vector for brief introduction. See also Point2D for homogeneous two-dimensional coordinates. -@see Magnum::Vector3 +@see Magnum::Vector3, Magnum::Vector3i, Magnum::Vector3ui @configurationvalueref{Magnum::Math::Vector3} */ template class Vector3: public Vector<3, T> { diff --git a/src/Math/Vector4.h b/src/Math/Vector4.h index 206b5a8aa..9bc2265b2 100644 --- a/src/Math/Vector4.h +++ b/src/Math/Vector4.h @@ -29,7 +29,7 @@ namespace Magnum { namespace Math { See @ref matrix-vector for brief introduction. See also Point3D for homogeneous three-dimensional coordinates. -@see Magnum::Vector4 +@see Magnum::Vector4, Magnum::Vector4i, Magnum::Vector4ui @configurationvalueref{Magnum::Math::Vector4} */ template class Vector4: public Vector<4, T> {