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>2015-06-24 03:34:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-24 04:21:54 +0300
commita33b1ce5009a22c1f04ead3c3aa61cfa4284862e (patch)
tree146a705373925d69a1985319857257a2be9644ad /source/blender/blenlib
parent227aefc18ba03e56909f4714455be3e40f2b721f (diff)
Correct recent error
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index 98d21aabf3a..7329a1177a8 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -542,7 +542,7 @@ float dist_signed_squared_to_corner_v3v3v3(
const float axis_ref[3])
{
float dir_a[3], dir_b[3];
- float plane_a[4], plane_b[4];
+ float plane_a[3], plane_b[3];
float dist_a, dist_b;
float axis[3];
float s_p_v2[3];