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>2014-09-14 11:42:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-14 11:42:33 +0400
commita319469260a2dcc1b1855b96f072b7466e0df22f (patch)
tree55bdd4f675ca152f1961c4aa35dcdd7c052f44f7 /source/blender/blenlib/intern/polyfill2d.c
parent432d274990d46f54d2d27cb0a8a351ecd2de4491 (diff)
Correct last commit
Diffstat (limited to 'source/blender/blenlib/intern/polyfill2d.c')
-rw-r--r--source/blender/blenlib/intern/polyfill2d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/polyfill2d.c b/source/blender/blenlib/intern/polyfill2d.c
index 40390b0e173..a00d95a075f 100644
--- a/source/blender/blenlib/intern/polyfill2d.c
+++ b/source/blender/blenlib/intern/polyfill2d.c
@@ -662,11 +662,11 @@ static PolyIndex *pf_ear_tip_find(
static bool pf_ear_tip_check(PolyFill *pf, PolyIndex *pi_ear_tip)
{
#ifndef USE_KDTREE
- const float *v1, *v2, *v3;
-#else
/* localize */
const float (*coords)[2] = pf->coords;
PolyIndex *pi_curr;
+
+ const float *v1, *v2, *v3;
#endif
#if defined(USE_CONVEX_SKIP) && !defined(USE_KDTREE)