From 2fc6ddef9d74bd255ab963f02ad48d557c024b09 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 1 Apr 2016 21:17:25 +0200 Subject: [PATCH] [DOC] @not-in-doc ==> @not_in_doc --- ege/Material.h | 2 +- ege/physics/Engine.h | 2 +- ege/resource/Mesh.h | 18 +++++++++--------- ege/resource/tools/Face.h | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ege/Material.h b/ege/Material.h index ca2b6f2..e0cc112 100644 --- a/ege/Material.h +++ b/ege/Material.h @@ -15,7 +15,7 @@ namespace ege { /** - * @not-in-doc + * @not_in_doc */ class MaterialGlId { public: diff --git a/ege/physics/Engine.h b/ege/physics/Engine.h index d98152c..1836375 100644 --- a/ege/physics/Engine.h +++ b/ege/physics/Engine.h @@ -72,7 +72,7 @@ namespace ege { }; public: // Define a collision point ==> for debug only ... - //! @not-in-doc + //! @not_in_doc class collisionPoints { public: std::shared_ptr elem1; diff --git a/ege/resource/Mesh.h b/ege/resource/Mesh.h index a7f2ca8..9e2e387 100644 --- a/ege/resource/Mesh.h +++ b/ege/resource/Mesh.h @@ -35,7 +35,7 @@ namespace ege { static std::shared_ptr createCube(float _size=1.0f, const std::string& _materialName="basics", const etk::Color& _color=etk::color::white); public: /** - * @not-in-doc + * @not_in_doc */ enum normalMode { normalModeNone, @@ -154,7 +154,7 @@ namespace ege { void addLines(const std::string& _layerName, const std::vector& _list, const std::vector>& _color); /** - * @not-in-doc + * @not_in_doc * @brief draw a colored triangle (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -168,7 +168,7 @@ namespace ege { addTriangle(_layerName, _pos1, _pos2, _pos3, _color, _color, _color); } /** - * @not-in-doc + * @not_in_doc * @brief draw a colored triangle (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -181,7 +181,7 @@ namespace ege { void addTriangle(const std::string& _layerName, const vec3& _pos1, const vec3& _pos2, const vec3& _pos3, const etk::Color& _color1, const etk::Color& _color2, const etk::Color& _color3); /** - * @not-in-doc + * @not_in_doc * @brief draw a colored quad (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -194,7 +194,7 @@ namespace ege { addQuad(_layerName, _pos1, _pos2, _pos3, _pos4, _color, _color, _color, _color); } /** - * @not-in-doc + * @not_in_doc * @brief draw a colored quad (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -212,7 +212,7 @@ namespace ege { addTriangle(_layerName, _pos1, _pos3, _pos4, _color1, _color3, _color4); } /** - * @not-in-doc + * @not_in_doc * @brief draw a textured colored triangle (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -230,7 +230,7 @@ namespace ege { addTriangle(_layerName, _pos1, _pos2, _pos3, _uv1, _uv2, _uv3, _color, _color, _color); } /** - * @not-in-doc + * @not_in_doc * @brief draw a textured colored triangle (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -248,7 +248,7 @@ namespace ege { const vec2& _uv1, const vec2& _uv2, const vec2& _uv3, const etk::Color& _color1=etk::color::white, const etk::Color& _color2=etk::color::white, const etk::Color& _color3=etk::color::white); /** - * @not-in-doc + * @not_in_doc * @brief draw a textured colored quad (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position @@ -268,7 +268,7 @@ namespace ege { addQuad(_layerName, _pos1, _pos2, _pos3, _pos4, _uv1, _uv2, _uv3, _uv4, _color, _color, _color, _color); } /** - * @not-in-doc + * @not_in_doc * @brief draw a textured quad (usefull for debug and test) * @param[in] _layerName Material and face indexing layer name * @param[in] _pos1 First point position diff --git a/ege/resource/tools/Face.h b/ege/resource/tools/Face.h index 3e39934..8d33b70 100644 --- a/ege/resource/tools/Face.h +++ b/ege/resource/tools/Face.h @@ -9,7 +9,7 @@ namespace ege { /** - * @not-in-doc + * @not_in_doc */ class Face { public: