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-03-02 15:49:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-02 16:20:53 +0300
commite38dc33f80b0dc7dac0cf21ac95f454a99a70d05 (patch)
tree381df533eea44b23c67c6df5c0f1cc3e454d71e9 /source/blender/blenlib/BLI_math_geom.h
parentcea3892813e996352f0b550e7bd9647264be5331 (diff)
Fix dist_signed_squared_to_corner_v3v3v3 with concave corners
Diffstat (limited to 'source/blender/blenlib/BLI_math_geom.h')
-rw-r--r--source/blender/blenlib/BLI_math_geom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h
index f9cce27b1cb..9023cdd17bf 100644
--- a/source/blender/blenlib/BLI_math_geom.h
+++ b/source/blender/blenlib/BLI_math_geom.h
@@ -107,7 +107,7 @@ float dist_to_line_v3(const float p[3], const float l1[3], const float l
float dist_signed_squared_to_corner_v3v3v3(
const float p[3],
const float v1[3], const float v2[3], const float v3[3],
- const float axis_fallback[3]);
+ const float axis_ref[3]);
float closest_to_line_v3(float r[3], const float p[3], const float l1[3], const float l2[3]);
float closest_to_line_v2(float r[2], const float p[2], const float l1[2], const float l2[2]);
void closest_to_line_segment_v3(float r_close[3], const float p[3], const float l1[3], const float l2[3]);