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:
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 6d8193e7675..67ef4d57b4b 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -3070,7 +3070,7 @@ bool isect_ray_ray_epsilon_v3(const float ray_origin_a[3],
cross_v3_v3v3(n, ray_direction_b, ray_direction_a);
const float nlen = len_squared_v3(n);
- /* `nlen` is the the square of the area formed by the two vectors. */
+ /* `nlen` is the square of the area formed by the two vectors. */
if (UNLIKELY(nlen < epsilon)) {
/* The lines are parallel. */
return false;