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/blenlib/intern/polyfill_2d.c')
-rw-r--r--source/blender/blenlib/intern/polyfill_2d.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/polyfill_2d.c b/source/blender/blenlib/intern/polyfill_2d.c
index 5867cdee8bc..4044ebad56b 100644
--- a/source/blender/blenlib/intern/polyfill_2d.c
+++ b/source/blender/blenlib/intern/polyfill_2d.c
@@ -177,12 +177,15 @@ static void pf_ear_tip_cut(PolyFill *pf, PolyIndex *pi_ear_tip);
BLI_INLINE eSign signum_enum(float a)
{
- if (UNLIKELY(a == 0.0f))
+ if (UNLIKELY(a == 0.0f)) {
return 0;
- else if (a > 0.0f)
+ }
+ else if (a > 0.0f) {
return 1;
- else
+ }
+ else {
return -1;
+ }
}
/**
@@ -273,8 +276,8 @@ static uint kdtree2d_balance_recursive(
j = pos;
while (1) {
- while (coords[nodes[++i].index][axis] < co) ;
- while (coords[nodes[--j].index][axis] > co && j > neg) ;
+ while (coords[nodes[++i].index][axis] < co) { /* pass */ }
+ while (coords[nodes[--j].index][axis] > co && j > neg) { /* pass */ }
if (i >= j) {
break;