Blender V4.3
BPy_BinaryPredicate1D.cpp File Reference

Go to the source code of this file.

Functions

int BinaryPredicate1D_Init (PyObject *module)
 
 PyDoc_STRVAR (BinaryPredicate1D___doc__, "Base class for binary predicates working on :class:`Interface1D`\n" "objects. A BinaryPredicate1D is typically an ordering relation\n" "between two Interface1D objects. The predicate evaluates a relation\n" "between the two Interface1D 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 Interface1D objects.\n" "\n" " :arg inter1: The first Interface1D object.\n" " :type inter1: :class:`Interface1D`\n" " :arg inter2: The second Interface1D object.\n" " :type inter2: :class:`Interface1D`\n" " :return: True or false.\n" " :rtype: bool\n")
 
static int BinaryPredicate1D___init__ (BPy_BinaryPredicate1D *self, PyObject *args, PyObject *kwds)
 
static void BinaryPredicate1D___dealloc__ (BPy_BinaryPredicate1D *self)
 
static PyObject * BinaryPredicate1D___repr__ (BPy_BinaryPredicate1D *self)
 
static PyObject * BinaryPredicate1D___call__ (BPy_BinaryPredicate1D *self, PyObject *args, PyObject *kwds)
 
 PyDoc_STRVAR (BinaryPredicate1D_name_doc, "The name of the binary 1D predicate.\n" "\n" ":type: str")
 
static PyObject * BinaryPredicate1D_name_get (BPy_BinaryPredicate1D *self, void *)
 

Variables

static PyGetSetDef BPy_BinaryPredicate1D_getseters []
 
PyTypeObject BinaryPredicate1D_Type
 

Function Documentation

◆ BinaryPredicate1D___call__()

static PyObject * BinaryPredicate1D___call__ ( BPy_BinaryPredicate1D * self,
PyObject * args,
PyObject * kwds )
static

◆ BinaryPredicate1D___dealloc__()

static void BinaryPredicate1D___dealloc__ ( BPy_BinaryPredicate1D * self)
static

Definition at line 108 of file BPy_BinaryPredicate1D.cpp.

References self.

◆ BinaryPredicate1D___init__()

static int BinaryPredicate1D___init__ ( BPy_BinaryPredicate1D * self,
PyObject * args,
PyObject * kwds )
static

Definition at line 96 of file BPy_BinaryPredicate1D.cpp.

References self.

◆ BinaryPredicate1D___repr__()

static PyObject * BinaryPredicate1D___repr__ ( BPy_BinaryPredicate1D * self)
static

Definition at line 114 of file BPy_BinaryPredicate1D.cpp.

References self.

◆ BinaryPredicate1D_Init()

int BinaryPredicate1D_Init ( PyObject * module)

◆ BinaryPredicate1D_name_get()

static PyObject * BinaryPredicate1D_name_get ( BPy_BinaryPredicate1D * self,
void *  )
static

Definition at line 154 of file BPy_BinaryPredicate1D.cpp.

References self.

◆ PyDoc_STRVAR() [1/2]

PyDoc_STRVAR ( BinaryPredicate1D___doc__ ,
"Base class for binary predicates working on :class:`Interface1D`\n" "objects. A BinaryPredicate1D is typically an ordering relation\n" "between two Interface1D objects. The predicate evaluates a relation\n" "between the two Interface1D 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 Interface1D objects.\n" "\n" " :arg inter1: The first Interface1D object.\n" " :type inter1: :class:`Interface1D`\n" " :arg inter2: The second Interface1D object.\n" " :type inter2: :class:`Interface1D`\n" " :return: True or false.\n" " :rtype: bool\n"  )

◆ PyDoc_STRVAR() [2/2]

PyDoc_STRVAR ( BinaryPredicate1D_name_doc ,
"The name of the binary 1D predicate.\n" "\n" ":type: str"  )

Variable Documentation

◆ BinaryPredicate1D_Type

PyTypeObject BinaryPredicate1D_Type

◆ BPy_BinaryPredicate1D_getseters

PyGetSetDef BPy_BinaryPredicate1D_getseters[]
static
Initial value:
= {
{"name",
(setter) nullptr,
BinaryPredicate1D_name_doc,
nullptr},
{nullptr, nullptr, nullptr, nullptr, nullptr}
}
static PyObject * BinaryPredicate1D_name_get(BPy_BinaryPredicate1D *self, void *)

Definition at line 159 of file BPy_BinaryPredicate1D.cpp.