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-11-24 16:55:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-24 16:55:11 +0300
commitace5677ef0db996a4236073d1e1d6895fd5cf4bd (patch)
treed0ebc824718d8ef6f0aad260803e87228384023d /source/blender/blenkernel/intern/curveprofile.c
parentf67a685ad9f6565a2c7054d73188bd2f3003a6df (diff)
Cleanup: spelling, repeated words
Diffstat (limited to 'source/blender/blenkernel/intern/curveprofile.c')
-rw-r--r--source/blender/blenkernel/intern/curveprofile.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/curveprofile.c b/source/blender/blenkernel/intern/curveprofile.c
index df877e78379..f07d29c0807 100644
--- a/source/blender/blenkernel/intern/curveprofile.c
+++ b/source/blender/blenkernel/intern/curveprofile.c
@@ -199,9 +199,11 @@ CurveProfilePoint *BKE_curveprofile_insert(CurveProfile *profile, float x, float
return new_pt;
}
-/** Sets the handle type of the selected control points.
- * \param type_*: Either HD_VECT or HD_AUTO. Handle types for the first and second handles.
- * \note: Requires curveprofile_update call after. */
+/**
+ * Sets the handle type of the selected control points.
+ * \param type_1, type_2: Either HD_VECT or HD_AUTO. Handle types for the first and second handles.
+ * \note: Requires curveprofile_update call after.
+ */
void BKE_curveprofile_selected_handle_set(CurveProfile *profile, int type_1, int type_2)
{
for (int i = 0; i < profile->path_len; i++) {