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 <campbell@blender.org>2022-09-06 09:25:20 +0300
committerCampbell Barton <campbell@blender.org>2022-09-06 09:25:20 +0300
commit6c6a53fad357ad63d8128c33da7a84f172ef0b63 (patch)
tree0ab3290bbc010af86719bec5a7bd37de75997d37 /source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c
parent077ba5ac386f3cc75a67e01cdd75239b76c34de5 (diff)
Cleanup: spelling in comments, formatting, move comments into headers
Diffstat (limited to 'source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c')
-rw-r--r--source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c b/source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c
index bf42677d79c..257184bae1e 100644
--- a/source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c
+++ b/source/blender/gpencil_modifiers/intern/lineart/lineart_shadow.c
@@ -1303,7 +1303,7 @@ static void lineart_shadow_finalize_shadow_edges_task(
int v2i = (e[i].edge_identifier & LRT_OBINDEX_LOWER);
LineartVert *v = (LineartVert *)eln->pointer;
/* If the global position is close enough, use the original vertex to prevent flickering
- * caused by very slim boundary condition in point_triangle_relation().*/
+ * caused by very slim boundary condition in point_triangle_relation(). */
if (LRT_CLOSE_LOOSER_v3(e[i].v1->gloc, v[v1i].gloc)) {
e[i].v1 = &v[v1i];
}