Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-12-14 10:35:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-14 12:56:11 +0300
commitf6fd3a84c2ea12e14aff8769ee631e305212a7f8 (patch)
tree8049b107336933eab520a9f79de9644ea102fb23 /intern/rigidbody
parenta207c1cdaf11864a413c5de3ade93f85a592b3cb (diff)
Cleanup: reorganize doxygen modules
- Nest compositor pages under the compositor module - Nest GUI, DNA/RNA & externformats modules under Blender. - Remove modules from intern which no longer exist. - Add intern modules (atomic, eigen, glew-mx, libc_compat, locale, numaapi, rigidbody, sky, utfconv). - Use 'intern_' prefix for intern modules since some of the modules use generic terms such as locale & atomic.
Diffstat (limited to 'intern/rigidbody')
-rw-r--r--intern/rigidbody/RBI_api.h2
-rw-r--r--intern/rigidbody/RBI_hull_api.h4
-rw-r--r--intern/rigidbody/rb_bullet_api.cpp2
-rw-r--r--intern/rigidbody/rb_convex_hull_api.cpp4
4 files changed, 10 insertions, 2 deletions
diff --git a/intern/rigidbody/RBI_api.h b/intern/rigidbody/RBI_api.h
index f13f321a2c6..c37d4bc6619 100644
--- a/intern/rigidbody/RBI_api.h
+++ b/intern/rigidbody/RBI_api.h
@@ -18,7 +18,7 @@
*/
/** \file
- * \ingroup RigidBody
+ * \ingroup intern_rigidbody
* \brief Rigid Body API for interfacing with external Physics Engines
*/
diff --git a/intern/rigidbody/RBI_hull_api.h b/intern/rigidbody/RBI_hull_api.h
index 3bd216b92cb..01c98f4772e 100644
--- a/intern/rigidbody/RBI_hull_api.h
+++ b/intern/rigidbody/RBI_hull_api.h
@@ -17,6 +17,10 @@
* All rights reserved.
*/
+/** \file
+ * \ingroup intern_rigidbody
+ */
+
#ifndef __RB_HULL_API_H__
#define __RB_HULL_API_H__
diff --git a/intern/rigidbody/rb_bullet_api.cpp b/intern/rigidbody/rb_bullet_api.cpp
index daa377a7b55..57d55939218 100644
--- a/intern/rigidbody/rb_bullet_api.cpp
+++ b/intern/rigidbody/rb_bullet_api.cpp
@@ -18,7 +18,7 @@
*/
/** \file
- * \ingroup RigidBody
+ * \ingroup intern_rigidbody
* \brief Rigid Body API implementation for Bullet
*/
diff --git a/intern/rigidbody/rb_convex_hull_api.cpp b/intern/rigidbody/rb_convex_hull_api.cpp
index 03e7580a12b..3b80dfdeae9 100644
--- a/intern/rigidbody/rb_convex_hull_api.cpp
+++ b/intern/rigidbody/rb_convex_hull_api.cpp
@@ -17,6 +17,10 @@
* All rights reserved.
*/
+/** \file
+ * \ingroup intern_rigidbody
+ */
+
#include "LinearMath/btConvexHullComputer.h"
#include "RBI_hull_api.h"