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-06-24 08:40:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-24 08:53:26 +0300
commit55bffa82da30a186bd952d0c140829374c2992e4 (patch)
tree9637c0685d62bdc0284d3ebb0232adb68fb5fdbb /source/blender/gpencil_modifiers
parentde6c6501f0eec38287222f0e9e641cf3fed18eba (diff)
Cleanup: clang-format, spelling
Diffstat (limited to 'source/blender/gpencil_modifiers')
-rw-r--r--source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c b/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
index 0b5003e5f2d..dffa6fce395 100644
--- a/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
+++ b/source/blender/gpencil_modifiers/intern/lineart/lineart_cpu.c
@@ -1921,7 +1921,7 @@ static bool lineart_geometry_check_visible(double (*model_view_proj)[4], Object
}
bool cond[6] = {true, true, true, true, true, true};
- /* Beause for a point to be inside clip space, it must satisfy -Wc <= XYCc <= Wc, here if all
+ /* Because for a point to be inside clip space, it must satisfy `-Wc <= XYCc <= Wc`, here if all
* verts falls to the same side of the clip space border, we know it's outside view. */
for (int i = 0; i < 8; i++) {
cond[0] &= (co[i][0] < -co[i][3]);