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>2020-03-11 13:39:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-11 13:39:56 +0300
commit8b2072868d5057bf9a3da52b8d27d13b11c8ae18 (patch)
tree5937c0d55d6ba9c41b5c2bc1f70de21535607717 /source/blender/io/usd
parent796683db8edb98adf2165fed458d08454cb7c977 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/io/usd')
-rw-r--r--source/blender/io/usd/intern/abstract_hierarchy_iterator.cc2
-rw-r--r--source/blender/io/usd/intern/abstract_hierarchy_iterator.h6
-rw-r--r--source/blender/io/usd/intern/usd_writer_mesh.cc2
3 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/io/usd/intern/abstract_hierarchy_iterator.cc b/source/blender/io/usd/intern/abstract_hierarchy_iterator.cc
index a8ed2c5f2a5..b473743fe16 100644
--- a/source/blender/io/usd/intern/abstract_hierarchy_iterator.cc
+++ b/source/blender/io/usd/intern/abstract_hierarchy_iterator.cc
@@ -345,7 +345,7 @@ void AbstractHierarchyIterator::visit_dupli_object(DupliObject *dupli_object,
}
else {
/* The parent object is NOT part of the duplicated collection. This means that the world
- * transform of this dupliobject can be influenced by objects that are not part of its
+ * transform of this dupli-object can be influenced by objects that are not part of its
* export graph. */
animation_check_include_parent = true;
context->export_parent = duplicator;
diff --git a/source/blender/io/usd/intern/abstract_hierarchy_iterator.h b/source/blender/io/usd/intern/abstract_hierarchy_iterator.h
index 8bca2ddd447..c121e3b704d 100644
--- a/source/blender/io/usd/intern/abstract_hierarchy_iterator.h
+++ b/source/blender/io/usd/intern/abstract_hierarchy_iterator.h
@@ -65,8 +65,8 @@ struct HierarchyContext {
/* When weak_export=true, the object will be exported only as transform, and only if is an
* ancestor of an object with weak_export=false.
*
- * In other words: when weak_export=true but this object has no children, or all decendants also
- * have weak_export=true, this object (and by recursive reasoning all its decendants) will be
+ * In other words: when weak_export=true but this object has no children, or all descendants also
+ * have weak_export=true, this object (and by recursive reasoning all its descendants) will be
* excluded from the export.
*
* The export hierarchy is kept as close to the the hierarchy in Blender as possible. As such, an
@@ -222,7 +222,7 @@ class AbstractHierarchyIterator {
*
* When this returns true, only a transform writer is created and marked as
* 'weak export'. In this case, the transform writer will be removed before
- * exporting starts, unless a decendant of this object is to be exported.
+ * exporting starts, unless a descendant of this object is to be exported.
* Dupli-object generated from this object will also be skipped.
*
* See HierarchyContext::weak_export.
diff --git a/source/blender/io/usd/intern/usd_writer_mesh.cc b/source/blender/io/usd/intern/usd_writer_mesh.cc
index 74005afaf31..cbf51fc15b3 100644
--- a/source/blender/io/usd/intern/usd_writer_mesh.cc
+++ b/source/blender/io/usd/intern/usd_writer_mesh.cc
@@ -58,7 +58,7 @@ bool USDGenericMeshWriter::is_supported(const HierarchyContext *context) const
int base_flag;
if (is_dupli) {
- /* Construct the object's base flags from its dupliparent, just like is done in
+ /* Construct the object's base flags from its dupli-parent, just like is done in
* deg_objects_dupli_iterator_next(). Without this, the visibility check below will fail. Doing
* this here, instead of a more suitable location in AbstractHierarchyIterator, prevents
* copying the Object for every dupli. */