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>2010-02-12 17:46:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-12 17:46:04 +0300
commit8497b2f8517a7dee69d5078ceadcc638e335ae8c (patch)
tree2060ee83aec3b2dd45bd3028f3834e55bdcbf29b /source/blender/blenlib/intern/math_geom.c
parent6ff18830940fbf863f8561759e0ccc14dc794f85 (diff)
typo in zeroing a vector
Diffstat (limited to 'source/blender/blenlib/intern/math_geom.c')
-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 016b99f2aa4..7e12cec5023 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -1873,7 +1873,7 @@ void tangent_from_uv(float *uv1, float *uv2, float *uv3, float *co1, float *co2,
negate_v3(tang);
}
else {
- tang[0]= tang[1]= tang[0]= 0.0;
+ tang[0]= tang[1]= tang[2]= 0.0;
}
}