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>2021-01-15 04:23:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-15 04:23:50 +0300
commit04572f0899f5cb45e71178a4d3ac03a01e1c088a (patch)
tree2726bc9c7fb6fa04765425ea8ddc3676231a6e57 /source/blender/blenlib/intern/math_geom.c
parentdc59955481f8e4ed585a18461062728ca6c885d3 (diff)
Cleanup: spelling
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 563457603bd..de5f96d3372 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -6295,7 +6295,7 @@ float geodesic_distance_propagate_across_triangle(
}
}
- /* Fall back to Dijsktra approximaton in trivial case, or if no valid source
+ /* Fall back to Dijsktra approximation in trivial case, or if no valid source
* point found that connects to v0 across the triangle. */
return min_ff(dist1 + len_v3(v10), dist2 + len_v3v3(v0, v2));
}