[Bf-blender-cvs] [2683dd8] master: Docs: add missing bmesh.ops descriptions

Campbell Barton noreply at git.blender.org
Sun Mar 20 09:40:14 CET 2016


Commit: 2683dd8b93d6c14bb8b3bfa03650cd619d9dbb30
Author: Campbell Barton
Date:   Sun Mar 20 19:40:03 2016 +1100
Branches: master
https://developer.blender.org/rB2683dd8b93d6c14bb8b3bfa03650cd619d9dbb30

Docs: add missing bmesh.ops descriptions

===================================================================

M	source/blender/bmesh/intern/bmesh_opdefines.c

===================================================================

diff --git a/source/blender/bmesh/intern/bmesh_opdefines.c b/source/blender/bmesh/intern/bmesh_opdefines.c
index 7e4a135..79c2f80 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 */




More information about the Bf-blender-cvs mailing list