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:
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Operators.cpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Operators.cpp b/source/blender/freestyle/intern/python/BPy_Operators.cpp
index 2d883363998..b0a8e7e3bd2 100644
--- a/source/blender/freestyle/intern/python/BPy_Operators.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Operators.cpp
@@ -19,10 +19,33 @@ extern "C" {
static void Operators___dealloc__(BPy_Operators *self);
static PyObject * Operators_select(BPy_Operators* self, PyObject *args);
+static PyObject * Operators_bidirectionalChain(BPy_Operators* self, PyObject *args);
+static PyObject * Operators_sequentialSplit(BPy_Operators* self, PyObject *args);
+static PyObject * Operators_recursiveSplit(BPy_Operators* self, PyObject *args);
+static PyObject * Operators_sort(BPy_Operators* self, PyObject *args);
+static PyObject * Operators_create(BPy_Operators* self, PyObject *args);
/*----------------------Operators instance definitions ----------------------------*/
static PyMethodDef BPy_Operators_methods[] = {
- {"select", ( PyCFunction ) Operators_select, METH_VARARGS | METH_STATIC, "(UnaryPredicate1D up1D )Selects the ViewEdges of the ViewMap verifying a specified condition. "},
+ {"select", ( PyCFunction ) Operators_select, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+ {"bidirectionalChain", ( PyCFunction ) Operators_bidirectionalChain, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+ {"sequentialSplit", ( PyCFunction ) Operators_sequentialSplit, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+ {"recursiveSplit", ( PyCFunction ) Operators_recursiveSplit, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+ {"sort", ( PyCFunction ) Operators_sort, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+ {"create", ( PyCFunction ) Operators_create, METH_VARARGS | METH_STATIC,
+ "select operator"},
+
+
{NULL, NULL, 0, NULL}
};