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-03-23 14:05:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-23 14:05:55 +0300
commit8eb8aa49397fb038ffa98dbe5dc4aed86e7b3e94 (patch)
treef5742a0f4414a99bd6738aae9cf4dc21b307fbfc /source/blender/editors/transform/transform_orientations.c
parentda00a50f7f48bfd95924705e69babea41f9d7b2b (diff)
parent7cc2b27099b7435cc1a29a48ae0e4c8335d811f3 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/transform/transform_orientations.c')
-rw-r--r--source/blender/editors/transform/transform_orientations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c
index 63eea11212c..b39e5f286c0 100644
--- a/source/blender/editors/transform/transform_orientations.c
+++ b/source/blender/editors/transform/transform_orientations.c
@@ -915,7 +915,7 @@ int getTransformOrientation_ex(const bContext *C, float normal[3], float plane[3
}
else if (is_next_sel) {
/* A segment, add the edge normal */
- sub_v3_v3v3(tvec, bp->vec, bp_next->vec );
+ sub_v3_v3v3(tvec, bp->vec, bp_next->vec);
normalize_v3(tvec);
add_v3_v3(normal, tvec);
}