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>2016-03-20 11:40:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-20 11:40:03 +0300
commit2683dd8b93d6c14bb8b3bfa03650cd619d9dbb30 (patch)
tree9764f09f96dc55c69d93072b7a132a51142054e2 /source/blender/bmesh
parent7f03e7cc3cbcebd43226d05e7039ba014a56c50a (diff)
Docs: add missing bmesh.ops descriptions
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_opdefines.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bmesh/intern/bmesh_opdefines.c b/source/blender/bmesh/intern/bmesh_opdefines.c
index 7e4a1358a9b..79c2f80d6aa 100644
--- a/source/blender/bmesh/intern/bmesh_opdefines.c
+++ b/source/blender/bmesh/intern/bmesh_opdefines.c
@@ -168,8 +168,8 @@ static BMOpDefine bmo_planar_faces_def = {
"planar_faces",
/* slots_in */
{{"faces", BMO_OP_SLOT_ELEMENT_BUF, {BM_FACE}}, /* input geometry. */
- {"iterations", BMO_OP_SLOT_INT},
- {"factor", BMO_OP_SLOT_FLT}, /* planar factor */
+ {"iterations", BMO_OP_SLOT_INT}, /* Number of times to flatten faces (for when connected faces are used) */
+ {"factor", BMO_OP_SLOT_FLT}, /* Influence for making planar each iteration */
{{'\0'}},
},
/* slots_out */
@@ -436,8 +436,8 @@ static BMOpDefine bmo_average_vert_facedata_def = {
static BMOpDefine bmo_pointmerge_def = {
"pointmerge",
/* slots_in */
- {{"verts", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT}}, /* input vertices */
- {"merge_co", BMO_OP_SLOT_VEC},
+ {{"verts", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT}}, /* input vertices (all verts will be merged into the first). */
+ {"merge_co", BMO_OP_SLOT_VEC}, /* Position to merge at. */
{{'\0'}},
},
{{{'\0'}}}, /* no output */