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>2012-04-16 20:49:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-16 20:49:37 +0400
commit67f8e3a3a7af4146b9bb7ae40f1bdc8dabc2b48f (patch)
treee70b92076373c720df61107bcd8e134d1006c76a /source/blender/blenlib/BLI_math_vector.h
parente889fa467816950c828f7696be2433c472a7d4ad (diff)
inline function for "Newell's Method" used for normal calc.
Diffstat (limited to 'source/blender/blenlib/BLI_math_vector.h')
-rw-r--r--source/blender/blenlib/BLI_math_vector.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h
index 7fba2699fc7..54c06616110 100644
--- a/source/blender/blenlib/BLI_math_vector.h
+++ b/source/blender/blenlib/BLI_math_vector.h
@@ -124,6 +124,8 @@ MINLINE float dot_v3v3(const float a[3], const float b[3]);
MINLINE float cross_v2v2(const float a[2], const float b[2]);
MINLINE void cross_v3_v3v3(float r[3], const float a[3], const float b[3]);
+MINLINE void add_newell_cross_v3_v3v3(float n[3], const float v_prev[3], const float v_curr[3]);
+
MINLINE void star_m3_v3(float rmat[3][3],float a[3]);
/*********************************** Length **********************************/