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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 13:06:09 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 13:37:38 +0300
commit5c9a67c63bfb67f9f86399f0a6a1d139f439d26b (patch)
tree01980859d097a30a37ed76fe864a2e73469efda1 /source/blender/depsgraph/intern/builder
parent79312c1912b4fdb830e38a856cf88bfca8e4703d (diff)
Depsgraph: Cleanup, line length
Diffstat (limited to 'source/blender/depsgraph/intern/builder')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc28
1 files changed, 21 insertions, 7 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc
index 8de4a1cca07..96ce4e10fda 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc
@@ -491,7 +491,9 @@ void DepsgraphRelationBuilder::build_rig(Object *object)
pchan->name,
DEG_OPCODE_BONE_SEGMENTS);
/* B-Bone shape depends on the final position of the bone. */
- add_relation(bone_done_key, bone_segments_key, "Done -> B-Bone Segments");
+ add_relation(bone_done_key,
+ bone_segments_key,
+ "Done -> B-Bone Segments");
/* B-Bone shape depends on final position of handle bones. */
bPoseChannel *prev, *next;
BKE_pchan_bbone_handles_get(pchan, &prev, &next);
@@ -500,24 +502,36 @@ void DepsgraphRelationBuilder::build_rig(Object *object)
DEG_NODE_TYPE_BONE,
prev->name,
DEG_OPCODE_BONE_DONE);
- add_relation(prev_key, bone_segments_key, "Prev Handle -> B-Bone Segments");
+ add_relation(prev_key,
+ bone_segments_key,
+ "Prev Handle -> B-Bone Segments");
}
if (next) {
OperationKey next_key(&object->id,
DEG_NODE_TYPE_BONE,
next->name,
DEG_OPCODE_BONE_DONE);
- add_relation(next_key, bone_segments_key, "Next Handle -> B-Bone Segments");
+ add_relation(next_key,
+ bone_segments_key,
+ "Next Handle -> B-Bone Segments");
}
/* Pose requires the B-Bone shape. */
- add_relation(bone_segments_key, pose_done_key, "PoseEval Result-Bone Link");
- add_relation(bone_segments_key, pose_cleanup_key, "Cleanup dependency");
+ add_relation(bone_segments_key,
+ pose_done_key,
+ "PoseEval Result-Bone Link");
+ add_relation(bone_segments_key,
+ pose_cleanup_key,
+ "Cleanup dependency");
}
else {
/* Assume that all bones must be done for the pose to be ready
* (for deformers). */
- add_relation(bone_done_key, pose_done_key, "PoseEval Result-Bone Link");
- add_relation(bone_done_key, pose_cleanup_key, "Cleanup dependency");
+ add_relation(bone_done_key,
+ pose_done_key,
+ "PoseEval Result-Bone Link");
+ add_relation(bone_done_key,
+ pose_cleanup_key,
+ "Cleanup dependency");
}
/* Custom shape. */
if (pchan->custom != NULL) {