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 <campbell@blender.org>2022-03-08 06:32:34 +0300
committerCampbell Barton <campbell@blender.org>2022-03-08 06:32:34 +0300
commit06d9c2c223b345d1ac1fcb5fc9602db36572b4a7 (patch)
treebbf146c6b26e3b053ce90cc841b9ec837c1d684a /source/blender/io/collada
parentc0c840cc3109577476c70ae58ed918dea26b2640 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/io/collada')
-rw-r--r--source/blender/io/collada/DocumentImporter.cpp3
-rw-r--r--source/blender/io/collada/SceneExporter.cpp2
2 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/io/collada/DocumentImporter.cpp b/source/blender/io/collada/DocumentImporter.cpp
index 6515f7553ad..2ce97bc8b5d 100644
--- a/source/blender/io/collada/DocumentImporter.cpp
+++ b/source/blender/io/collada/DocumentImporter.cpp
@@ -396,8 +396,7 @@ Object *DocumentImporter::create_instance_node(Object *source_ob,
anim_importer.read_node_transform(instance_node, obn);
/* if we also have a source_node (always ;), take its
* transformation matrix and apply it to the newly instantiated
- * object to account for node hierarchy transforms in
- * .dae */
+ * object to account for node hierarchy transforms in `.dae`. */
if (source_node) {
COLLADABU::Math::Matrix4 mat4 = source_node->getTransformationMatrix();
COLLADABU::Math::Matrix4 bmat4 =
diff --git a/source/blender/io/collada/SceneExporter.cpp b/source/blender/io/collada/SceneExporter.cpp
index 6cdfce5f35a..ea95729666a 100644
--- a/source/blender/io/collada/SceneExporter.cpp
+++ b/source/blender/io/collada/SceneExporter.cpp
@@ -189,7 +189,7 @@ void SceneExporter::writeNode(Object *ob)
"blender", con_tag, "lin_error", con->lin_error);
/* not ideal: add the target object name as another parameter.
- * No real mapping in the .dae
+ * No real mapping in the `.dae`.
* Need support for multiple target objects also. */
const bConstraintTypeInfo *cti = BKE_constraint_typeinfo_get(con);
ListBase targets = {nullptr, nullptr};