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:
Diffstat (limited to 'source/blender/collada/ArmatureExporter.cpp')
-rw-r--r--source/blender/collada/ArmatureExporter.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/collada/ArmatureExporter.cpp b/source/blender/collada/ArmatureExporter.cpp
index ea1e98caf58..5abe0998470 100644
--- a/source/blender/collada/ArmatureExporter.cpp
+++ b/source/blender/collada/ArmatureExporter.cpp
@@ -119,12 +119,12 @@ bool ArmatureExporter::add_instance_controller(Object *ob)
void ArmatureExporter::operator()(Object *ob)
{
Object *ob_arm = bc_get_assigned_armature(ob);
-
}
bool ArmatureExporter::already_written(Object *ob_arm)
{
- return std::find(written_armatures.begin(), written_armatures.end(), ob_arm) != written_armatures.end();
+ return std::find(written_armatures.begin(), written_armatures.end(), ob_arm) !=
+ written_armatures.end();
}
void ArmatureExporter::wrote(Object *ob_arm)
@@ -132,11 +132,13 @@ void ArmatureExporter::wrote(Object *ob_arm)
written_armatures.push_back(ob_arm);
}
-void ArmatureExporter::find_objects_using_armature(Object *ob_arm, std::vector<Object *>& objects, Scene *sce)
+void ArmatureExporter::find_objects_using_armature(Object *ob_arm,
+ std::vector<Object *> &objects,
+ Scene *sce)
{
objects.clear();
- Base *base = (Base *) sce->base.first;
+ Base *base = (Base *)sce->base.first;
while (base) {
Object *ob = base->object;