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>2020-10-16 03:46:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-16 03:46:48 +0300
commitfa0ceb4959cb5f943e73e06fcbb47ce18cea80e7 (patch)
treeeca0fddd9715ae49115dcf2512105b0c83554f42 /source/blender/editors/sculpt_paint/sculpt_intern.h
parent00f7b572d9ebce1af0e9b5afc5d53467374ca738 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 916e7336c37..6055f4e4c8b 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -329,7 +329,7 @@ enum eDynTopoWarnFlag SCULPT_dynamic_topology_check(Scene *scene, Object *ob);
void SCULPT_pbvh_clear(Object *ob);
-/* Automasking. */
+/* Auto-masking. */
float SCULPT_automasking_factor_get(struct AutomaskingCache *automasking,
SculptSession *ss,
int vert);
@@ -835,8 +835,8 @@ typedef struct AutomaskingSettings {
typedef struct AutomaskingCache {
AutomaskingSettings settings;
- /* Precomputed automask factor indexed by vertex, owned by the automasking system and initialized
- * in SCULPT_automasking_cache_init when needed. */
+ /* Precomputed auto-mask factor indexed by vertex, owned by the auto-masking system and
+ * initialized in #SCULPT_automasking_cache_init when needed. */
float *factor;
} AutomaskingCache;
@@ -874,7 +874,7 @@ typedef struct StrokeCache {
float y_tilt;
/* Position of the mouse corresponding to the stroke location, modified by the paint_stroke
- * operator acording to the stroke type. */
+ * operator according to the stroke type. */
float mouse[2];
/* Position of the mouse event in screen space, not modified by the stroke type. */
float mouse_event[2];
@@ -984,7 +984,7 @@ typedef struct StrokeCache {
float true_gravity_direction[3];
float gravity_direction[3];
- /* Automasking. */
+ /* Auto-masking. */
AutomaskingCache *automasking;
float stroke_local_mat[4][4];
@@ -1062,7 +1062,7 @@ typedef struct FilterCache {
int active_face_set;
- /* Automasking. */
+ /* Auto-masking. */
AutomaskingCache *automasking;
} FilterCache;