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-09-24 07:18:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-24 07:27:48 +0300
commit4786719dbd1916a049e608c033b7f452b1d156c2 (patch)
tree9ddbb9ff8e0a3fd9b89c39e0573662c3dcf708d7 /source/blender/editors
parent15afaa3db25a2416889abf39b800bca6d16f27d1 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/interface/interface_panel.c2
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_pose.c9
2 files changed, 7 insertions, 4 deletions
diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c
index 18b134ced4a..2917758c995 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -1903,7 +1903,7 @@ static void panels_layout_begin_clear_flags(ListBase *lb)
void UI_panels_begin(const bContext *UNUSED(C), ARegion *region)
{
/* Set all panels as inactive, so that at the end we know which ones were used. Also
- * clear other flags so we know later that their values were set for th current redraw. */
+ * clear other flags so we know later that their values were set for the current redraw. */
panels_layout_begin_clear_flags(&region->panels);
}
diff --git a/source/blender/editors/sculpt_paint/sculpt_pose.c b/source/blender/editors/sculpt_paint/sculpt_pose.c
index 4081e7a962f..4b318a05591 100644
--- a/source/blender/editors/sculpt_paint/sculpt_pose.c
+++ b/source/blender/editors/sculpt_paint/sculpt_pose.c
@@ -539,10 +539,13 @@ static bool pose_face_sets_floodfill_cb(
/* Public functions. */
-/* Calculate the pose origin and (Optionaly the pose factor) that is used when using the pose brush
+/**
+ * Calculate the pose origin and (Optionally the pose factor)
+ * that is used when using the pose brush.
*
- * r_pose_origin must be a valid pointer. the r_pose_factor is optional. When set to NULL it won't
- * be calculated. */
+ * \param r_pose_origin: Must be a valid pointer.
+ * \param r_pose_factor: Optional, when set to NULL it won't be calculated.
+ */
void SCULPT_pose_calc_pose_data(Sculpt *sd,
Object *ob,
SculptSession *ss,