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-09 13:18:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-09 13:19:46 +0300
commit973dac9b5f7820baa431acd54988a508dd844d67 (patch)
treeffc8577d642c406bd23bd1ca098d2c0c0f69d6ff /source/blender/ikplugin
parent7f4878ac7f5612082a1235cf6083dc490cbfc212 (diff)
Cleanup: use doxy section for itasc_plugin
It wasn't obvious all callbacks were part of the plugin-API.
Diffstat (limited to 'source/blender/ikplugin')
-rw-r--r--source/blender/ikplugin/intern/itasc_plugin.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/ikplugin/intern/itasc_plugin.cpp b/source/blender/ikplugin/intern/itasc_plugin.cpp
index a9e1692ebf0..949efb522f3 100644
--- a/source/blender/ikplugin/intern/itasc_plugin.cpp
+++ b/source/blender/ikplugin/intern/itasc_plugin.cpp
@@ -1876,9 +1876,10 @@ static void execute_scene(struct Depsgraph *depsgraph,
}
}
-/*---------------------------------------------------
- * plugin interface
- */
+/* -------------------------------------------------------------------- */
+/** \name Plugin Interface
+ * \{ */
+
void itasc_initialize_tree(struct Depsgraph *depsgraph,
struct Scene *scene,
Object *ob,
@@ -2012,3 +2013,5 @@ void itasc_test_constraint(struct Object *ob, struct bConstraint *cons)
break;
}
}
+
+/** \} */