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>2012-11-28 04:16:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-28 04:16:06 +0400
commit8ecce451ab928fd2ab9d2844e8f337c18c6f1269 (patch)
tree2a6c689c4cc90adb99dafaba0e4e493b898cfc48 /source/blender/bmesh/intern/bmesh_operators.c
parent69948150ad417e20ed29d818ba5a271d653ef2ff (diff)
bmesh operator naming - use clearer names for args eg: (mat -> matrix, use_singleedge -> use_single_edge)
also remove duplicate docs for operator arg formatting.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index 18caefc13c3..ba38f230f0b 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -1485,6 +1485,12 @@ static int bmo_opname_to_opcode(const char *opname)
/**
* \brief Format Strings for #BMOperator Initialization.
*
+ * This system is used to execute or initialize an operator,
+ * using a formatted-string system.
+ *
+ * The basic format for the format string is:
+ * `[operatorname] [slot_name]=%[code] [slot_name]=%[code]`
+ *
* Example:
*
* \code{.c}