summaryrefslogtreecommitdiffstats
path: root/src/math/const.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/const.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/const.h')
-rw-r--r--src/math/const.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/math/const.h b/src/math/const.h
index b08a400..0b6f971 100644
--- a/src/math/const.h
+++ b/src/math/const.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 MathConstModule math/const.h
- Contains the math constants used in math functions.
+/**
+ * \file math/const.h
+ * \brief Constants used in math functions
*/
#pragma once
@@ -26,7 +27,6 @@
// Math module namespace
namespace Math
{
-/* @{ */ // start of group
//! Tolerance level -- minimum accepted float value
const float TOLERANCE = 1e-6f;
@@ -50,6 +50,5 @@ const float RAD_TO_DEG = 57.29577951308232286465f;
//! Natural logarithm of 2
const float LOG_2 = log(2.0f);
-/* @} */ // end of group
}; // namespace Math