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:
authorGermano Cavalcante <germano.costa@ig.com.br>2016-02-11 10:20:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-11 10:21:10 +0300
commit86725667d49d2948e205aecbfd8123b1e6ba8939 (patch)
treeb94edce840ce837dd3db4d369737f329d4f1882a /source/blender/blenlib/BLI_math_geom.h
parent00fbc326e31b67c41a023ef9a23bc44ed965268d (diff)
Cleanup: naming for NearestRayToAABB_Precalc
Diffstat (limited to 'source/blender/blenlib/BLI_math_geom.h')
-rw-r--r--source/blender/blenlib/BLI_math_geom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h
index dff4c68d4b9..7836f12a03e 100644
--- a/source/blender/blenlib/BLI_math_geom.h
+++ b/source/blender/blenlib/BLI_math_geom.h
@@ -286,8 +286,8 @@ bool isect_ray_aabb_v3(
struct NearestRayToAABB_Precalc {
float ray_origin[3];
- float ray_dot_axis[3];
- float idot_axis[3];
+ float ray_direction[3];
+ float ray_inv_dir[3];
float cdot_axis[3];
float idiag_sq[3];
bool sign[3];