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 14:32:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-09 14:37:24 +0300
commit74e57efb2d1dee73cdef6f31131ca4b3bbc6e81c (patch)
tree0bca671cad7fadc9a02368fac6c19ad3d945a4ea /source/blender/io/alembic/intern/abc_util.cc
parent69f55b1b6216969ecd42fab657dd777c3179f916 (diff)
Cleanup: move public doc-strings into headers for 'io/alembic'
Ref T92709
Diffstat (limited to 'source/blender/io/alembic/intern/abc_util.cc')
-rw-r--r--source/blender/io/alembic/intern/abc_util.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/io/alembic/intern/abc_util.cc b/source/blender/io/alembic/intern/abc_util.cc
index 3d3ba0347c5..952fe1fa783 100644
--- a/source/blender/io/alembic/intern/abc_util.cc
+++ b/source/blender/io/alembic/intern/abc_util.cc
@@ -63,15 +63,6 @@ std::string get_valid_abc_name(const char *name)
return name_string;
}
-/**
- * \brief get_object_dag_path_name returns the name under which the object
- * will be exported in the Alembic file. It is of the form
- * "[../grandparent/]parent/object" if dupli_parent is NULL, or
- * "dupli_parent/[../grandparent/]parent/object" otherwise.
- * \param ob:
- * \param dupli_parent:
- * \return
- */
std::string get_object_dag_path_name(const Object *const ob, Object *dupli_parent)
{
std::string name = get_id_name(ob);