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>2020-03-15 13:53:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-15 13:53:57 +0300
commitb8feef59c8b463dfec0b991bf40554947c96bff1 (patch)
treef763ba0a45e14bd90084a2d007bb146f5154f27b /source/blender/bmesh
parent5029b97d0240a2b59914812fe004b14b26f8fc34 (diff)
Cleanup: add parens for clarity
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/tools/bmesh_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 6fc53da4940..1ab318a8946 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -3164,7 +3164,7 @@ static void regularize_profile_orientation(BevelParams *bp, BMEdge *bme)
}
else {
/* The opposite side as the first direction because we're moving the other way. */
- edgehalf->leftv->is_profile_start = !toward_bv ^ right_highest;
+ edgehalf->leftv->is_profile_start = (!toward_bv) ^ right_highest;
}
/* The next jump will in the opposite direction relative to the BevVert. */