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-04-10 09:40:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-10 09:40:49 +0300
commitb9eac0bb44fbb4e8d16a74fab8e0d9bc37bfebd3 (patch)
tree91d2e2dc8c4c5d83c8d45b9b9e4c3799617d7122 /source/blender/editors/sculpt_paint/paint_image_proj.c
parent0c3500e068ea55d0d67df0de905aaed99b58b8a9 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_image_proj.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_proj.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c
index 44e1c5b7696..45ae3e9dc11 100644
--- a/source/blender/editors/sculpt_paint/paint_image_proj.c
+++ b/source/blender/editors/sculpt_paint/paint_image_proj.c
@@ -924,8 +924,8 @@ static bool project_bucket_point_occluded(
return false;
}
-/* basic line intersection, could move to math_geom.c, 2 points with a horiz line
- * 1 for an intersection, 2 if the first point is aligned, 3 if the second point is aligned */
+/* Basic line intersection, could move to math_geom.c, 2 points with a horizontal line
+ * 1 for an intersection, 2 if the first point is aligned, 3 if the second point is aligned. */
#define ISECT_TRUE 1
#define ISECT_TRUE_P1 2
#define ISECT_TRUE_P2 3
@@ -2443,8 +2443,8 @@ static void project_bucket_clip_face(
*tot = 3;
return;
}
- /* handle pathological case here,
- * no need for further intersections below since tringle area is almost zero */
+ /* Handle pathological case here,
+ * no need for further intersections below since triangle area is almost zero. */
if (collinear) {
int flag;