summaryrefslogtreecommitdiffstats
path: root/src/math/point.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-08-11 18:39:16 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-08-11 18:39:16 +0200
commit1996507fd3d4d9de90de99845b71a6bf3fbe62da (patch)
tree6dca78a855a8f0eacb3aecd230d337453ebca2ce /src/math/point.h
parent7f80ca297154809523cd533edf1842ab1ae391aa (diff)
downloadcolobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.tar.gz
colobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.tar.bz2
colobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.zip
Documentation update
- updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
Diffstat (limited to 'src/math/point.h')
-rw-r--r--src/math/point.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/math/point.h b/src/math/point.h
index ea20db9..ecf896f 100644
--- a/src/math/point.h
+++ b/src/math/point.h
@@ -14,8 +14,9 @@
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.
-/** @defgroup MathPointModule math/point.h
- Contains the Point struct and related functions.
+/**
+ * \file math/point.h
+ * \brief Point struct and related functions
*/
#pragma once
@@ -31,8 +32,6 @@
namespace Math
{
-/* @{ */ // start of group
-
/** \struct Point math/point.h
\brief 2D point
@@ -188,6 +187,4 @@ inline float Distance(const Point &a, const Point &b)
return sqrtf((a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
}
-/* @} */ // end of group
-
}; // namespace Math