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-03-18 01:35:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-18 01:36:44 +0300
commitbb6765f28fdde392976c38712c851d0ef8c75a2c (patch)
tree500342ef54f60bb73b429e74355139665bff500f /source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c
parent0c58ad8a34c55344262ac74fce87888beb464155 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c')
-rw-r--r--source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c b/source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c
index e2741b806c2..0a512fdd592 100644
--- a/source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c
+++ b/source/blender/bmesh/tools/bmesh_decimate_unsubdivide.c
@@ -77,12 +77,12 @@ static bool bm_vert_dissolve_fan_test(BMVert *v)
static bool bm_vert_dissolve_fan(BMesh *bm, BMVert *v)
{
- /* collapse under 2 conditions.
+ /* Collapse under 2 conditions:
* - vert connects to 4 manifold edges (and 4 faces).
* - vert connects to 1 manifold edge, 2 boundary edges (and 2 faces).
*
* This covers boundary verts of a quad grid and center verts.
- * note that surrounding faces dont have to be quads.
+ * note that surrounding faces don't have to be quads.
*/
BMIter iter;