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/intern/stroke/Predicates1D.h')
-rwxr-xr-xsource/blender/freestyle/intern/stroke/Predicates1D.h26
1 files changed, 2 insertions, 24 deletions
diff --git a/source/blender/freestyle/intern/stroke/Predicates1D.h b/source/blender/freestyle/intern/stroke/Predicates1D.h
index 6e7ab04783b..6461f6428ab 100755
--- a/source/blender/freestyle/intern/stroke/Predicates1D.h
+++ b/source/blender/freestyle/intern/stroke/Predicates1D.h
@@ -77,18 +77,7 @@ public:
* false otherwise.
*/
virtual int operator()(Interface1D& inter) {
- string name( py_up1D ? PyString_AsString(PyObject_CallMethod(py_up1D, "getName", "")) : getName() );
-
- if( py_up1D && PyObject_HasAttrString(py_up1D, "__call__")) {
- int res = Director_BPy_UnaryPredicate1D___call__(py_up1D, inter);
- if (res < 0)
- return -1;
- result = (res == 1);
- } else {
- cerr << "Warning: " << name << " operator() not implemented" << endl;
- result = false;
- }
- return 0;
+ return Director_BPy_UnaryPredicate1D___call__(this, inter);
}
};
@@ -131,18 +120,7 @@ public:
* \return true or false.
*/
virtual int operator()(Interface1D& inter1, Interface1D& inter2) {
- string name( py_bp1D ? PyString_AsString(PyObject_CallMethod(py_bp1D, "getName", "")) : getName() );
-
- if( py_bp1D && PyObject_HasAttrString(py_bp1D, "__call__") ) {
- int res = Director_BPy_BinaryPredicate1D___call__(py_bp1D, inter1, inter2);
- if (res < 0)
- return -1;
- result = (res == 1);
- } else {
- cerr << "Warning: " << name << " operator() not implemented" << endl;
- result = false;
- }
- return 0;
+ return Director_BPy_BinaryPredicate1D___call__(this, inter1, inter2);
}
};