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>2019-11-21 15:25:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-21 15:30:51 +0300
commit2ec9aa3b71f4ebd9676326b690aaf3049849adee (patch)
tree4964840f39114912872bb6a6c5604928bc99db9b /source/blender/bmesh/tools
parentcee94789850e99fc68dd398e7d1abd67f0e2b85d (diff)
Cleanup: spelling
One of the corrections from last cleanup was wrong.
Diffstat (limited to 'source/blender/bmesh/tools')
-rw-r--r--source/blender/bmesh/tools/bmesh_bevel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 7338c2b9f7a..d1669c87940 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -1739,7 +1739,8 @@ static void calculate_profile(BevelParams *bp, BoundVert *bndv, bool reversed, b
}
if (bp->vmesh_method == BEVEL_VMESH_CUTOFF && map_ok) {
/* Calculate the "height" of the profile by putting the (0,0) and (1,1) corners of the
- * un-transformed profile thought the 2D->3D map and calculating the distance between them. */
+ * un-transformed profile throughout the 2D->3D map and calculating the distance between them.
+ */
zero_v3(p);
mul_v3_m4v3(bottom_corner, map, p);
p[0] = 1.0f;