|
Blender V5.0
|
Go to the source code of this file.
Functions | |
| int | BinaryPredicate0D_Init (PyObject *module) |
| PyDoc_STRVAR (BinaryPredicate0D___doc__, "Base class for binary predicates working on :class:`Interface0D`\n" "objects. A BinaryPredicate0D is typically an ordering relation\n" "between two Interface0D objects. The predicate evaluates a relation\n" "between the two Interface0D instances and returns a boolean value (true\n" "or false). It is used by invoking the __call__() method.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.\n" "\n" ".. method:: __call__(inter1, inter2)\n" "\n" " Must be overload by inherited classes. It evaluates a relation\n" " between two Interface0D objects.\n" "\n" " :arg inter1: The first Interface0D object.\n" " :type inter1: :class:`Interface0D`\n" " :arg inter2: The second Interface0D object.\n" " :type inter2: :class:`Interface0D`\n" " :return: True or false.\n" " :rtype: bool\n") | |
| static int | BinaryPredicate0D___init__ (BPy_BinaryPredicate0D *self, PyObject *args, PyObject *kwds) |
| static void | BinaryPredicate0D___dealloc__ (BPy_BinaryPredicate0D *self) |
| static PyObject * | BinaryPredicate0D___repr__ (BPy_BinaryPredicate0D *self) |
| static PyObject * | BinaryPredicate0D___call__ (BPy_BinaryPredicate0D *self, PyObject *args, PyObject *kwds) |
| PyDoc_STRVAR (BinaryPredicate0D_name_doc, "The name of the binary 0D predicate.\n" "\n" ":type: str\n") | |
| static PyObject * | BinaryPredicate0D_name_get (BPy_BinaryPredicate0D *self, void *) |
Variables | |
| static PyGetSetDef | BPy_BinaryPredicate0D_getseters [] |
| PyTypeObject | BinaryPredicate0D_Type |
|
static |
Definition at line 83 of file BPy_BinaryPredicate0D.cpp.
References BPy_Interface0D::if0D, Interface0D_Type, PyBool_from_bool(), and self.
|
static |
Definition at line 71 of file BPy_BinaryPredicate0D.cpp.
References self.
|
static |
Definition at line 59 of file BPy_BinaryPredicate0D.cpp.
References self.
|
static |
Definition at line 78 of file BPy_BinaryPredicate0D.cpp.
References self.
| int BinaryPredicate0D_Init | ( | PyObject * | module | ) |
Definition at line 19 of file BPy_BinaryPredicate0D.cpp.
References BinaryPredicate0D_Type, and module.
Referenced by Freestyle_Init().
|
static |
Definition at line 117 of file BPy_BinaryPredicate0D.cpp.
References self.
| PyDoc_STRVAR | ( | BinaryPredicate0D___doc__ | , |
| "Base class for binary predicates working on :class:`Interface0D`\n" "objects. A BinaryPredicate0D is typically an ordering relation\n" "between two Interface0D objects. The predicate evaluates a relation\n" "between the two Interface0D instances and returns a boolean value (true\n" "or false). It is used by invoking the __call__() method.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.\n" "\n" ".. method:: __call__(inter1, inter2)\n" "\n" " Must be overload by inherited classes. It evaluates a relation\n" " between two Interface0D objects.\n" "\n" " :arg inter1: The first Interface0D object.\n" " :type inter1: :class:`Interface0D`\n" " :arg inter2: The second Interface0D object.\n" " :type inter2: :class:`Interface0D`\n" " :return: True or false.\n" " :rtype: bool\n" | ) |
| PyDoc_STRVAR | ( | BinaryPredicate0D_name_doc | , |
| "The name of the binary 0D predicate.\n" "\n" ":type: str\n" | ) |
| PyTypeObject BinaryPredicate0D_Type |
Definition at line 133 of file BPy_BinaryPredicate0D.cpp.
Referenced by BinaryPredicate0D_Init().
|
static |
Definition at line 122 of file BPy_BinaryPredicate0D.cpp.