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>2018-04-16 19:13:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-16 19:13:48 +0300
commiteb6fe5fa94b86a0a20742e06bf1e68b4cbaf6693 (patch)
treece52b7a9a8941912152cc3bf7d07fb2a429b5d0d /source/blender/alembic
parent95eb9f22e69622c5817707fa9534521613e7d7cc (diff)
Cleanup: indentation
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_hair.cc5
-rw-r--r--source/blender/alembic/intern/abc_object.cc3
2 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/alembic/intern/abc_hair.cc b/source/blender/alembic/intern/abc_hair.cc
index 8f8ed2019d5..0208da8a6d7 100644
--- a/source/blender/alembic/intern/abc_hair.cc
+++ b/source/blender/alembic/intern/abc_hair.cc
@@ -252,8 +252,9 @@ void AbcHairWriter::write_hair_child_sample(DerivedMesh *dm,
path = cache[p];
if (part->from == PART_FROM_FACE &&
- part->childtype != PART_CHILD_PARTICLES &&
- mtface) {
+ part->childtype != PART_CHILD_PARTICLES &&
+ mtface)
+ {
const int num = pc->num;
if (num < 0) {
ABC_LOG(m_settings.logger)
diff --git a/source/blender/alembic/intern/abc_object.cc b/source/blender/alembic/intern/abc_object.cc
index 6c4cb60d63c..ddedcf6dcbc 100644
--- a/source/blender/alembic/intern/abc_object.cc
+++ b/source/blender/alembic/intern/abc_object.cc
@@ -290,7 +290,8 @@ Alembic::AbcGeom::IXform AbcObjectReader::xform()
/* The archive's top object can be recognised by not having a parent. */
if (abc_parent.getParent()
- && IXform::matches(abc_parent.getMetaData())) {
+ && IXform::matches(abc_parent.getMetaData()))
+ {
return IXform(abc_parent, Alembic::AbcGeom::kWrapExisting);
}