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>2019-01-18 00:59:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-18 00:59:41 +0300
commit8efedf2523e859e844a84247b167807196c0958e (patch)
treefd285dd6811fecde313fa840b117e38e52b4ed47 /source/blender/alembic
parentd3e856cdfc0f184c230166046dd939baa0ac7a28 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_exporter.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/alembic/intern/abc_exporter.cc b/source/blender/alembic/intern/abc_exporter.cc
index a4b5963dd13..6ff572537a8 100644
--- a/source/blender/alembic/intern/abc_exporter.cc
+++ b/source/blender/alembic/intern/abc_exporter.cc
@@ -601,7 +601,8 @@ void AbcExporter::createShapeWriter(Object *ob, Object *dupliObParent)
AbcObjectWriter *writer;
if (m_settings.curves_as_mesh) {
writer = new AbcCurveMeshWriter(ob, xform, m_shape_sampling_index, m_settings);
- } else {
+ }
+ else {
writer = new AbcNurbsWriter(ob, xform, m_shape_sampling_index, m_settings);
}
m_shapes.push_back(writer);
@@ -618,7 +619,8 @@ void AbcExporter::createShapeWriter(Object *ob, Object *dupliObParent)
AbcObjectWriter *writer;
if (m_settings.curves_as_mesh) {
writer = new AbcCurveMeshWriter(ob, xform, m_shape_sampling_index, m_settings);
- } else {
+ }
+ else {
writer = new AbcCurveWriter(ob, xform, m_shape_sampling_index, m_settings);
}
m_shapes.push_back(writer);