From 721b705499fee2b999f74c7928892c9a9fce5bc2 Mon Sep 17 00:00:00 2001 From: Nikhil Shringarpurey Date: Wed, 2 Mar 2022 10:05:15 -0800 Subject: UI: Comments Misspellings of Vertex/Vertices Correct misspellings in code comments of "vertex" and "vertices". See D13932 for more details. Differential Revision: https://developer.blender.org/D13932 Reviewed by Harley Acheson --- source/blender/modifiers/intern/MOD_laplaciansmooth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/modifiers/intern/MOD_laplaciansmooth.c') diff --git a/source/blender/modifiers/intern/MOD_laplaciansmooth.c b/source/blender/modifiers/intern/MOD_laplaciansmooth.c index eed5430cc10..265d2e7ec05 100644 --- a/source/blender/modifiers/intern/MOD_laplaciansmooth.c +++ b/source/blender/modifiers/intern/MOD_laplaciansmooth.c @@ -48,8 +48,8 @@ struct BLaplacianSystem { int numLoops; /* Number of edges. */ int numPolys; /* Number of faces. */ int numVerts; /* Number of verts. */ - short *numNeFa; /* Number of neighbors faces around vertice. */ - short *numNeEd; /* Number of neighbors Edges around vertice. */ + short *numNeFa; /* Number of neighbors faces around vertex. */ + short *numNeEd; /* Number of neighbors Edges around vertex. */ bool *zerola; /* Is zero area or length. */ /* Pointers to data. */ @@ -283,7 +283,7 @@ static void fill_laplacian_matrix(LaplacianSystem *sys) for (; l_next != l_term; l_prev = l_curr, l_curr = l_next, l_next++) { const uint l_curr_index = l_curr - sys->mloop; - /* Is ring if number of faces == number of edges around vertice. */ + /* Is ring if number of faces == number of edges around vertex. */ if (sys->numNeEd[l_curr->v] == sys->numNeFa[l_curr->v] && sys->zerola[l_curr->v] == false) { EIG_linear_solver_matrix_add(sys->context, l_curr->v, -- cgit v1.2.3