Blender V4.3
BPy_UnaryFunction1DVoid.cpp File Reference

Go to the source code of this file.

Functions

int UnaryFunction1DVoid_Init (PyObject *module)
 
 PyDoc_STRVAR (UnaryFunction1DVoid___doc__, "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVoid`\n" "\n" "Base class for unary functions (functors) working on\n" ":class:`Interface1D`.\n" "\n" ".. method:: __init__()\n" " __init__(integration_type)\n" "\n" " Builds a unary 1D function using either a default constructor\n" " or the integration method given as an argument.\n" "\n" " :arg integration_type: An integration method.\n" " :type integration_type: :class:`IntegrationType`\n")
 
static int UnaryFunction1DVoid___init__ (BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
 
static void UnaryFunction1DVoid___dealloc__ (BPy_UnaryFunction1DVoid *self)
 
static PyObject * UnaryFunction1DVoid___repr__ (BPy_UnaryFunction1DVoid *self)
 
static PyObject * UnaryFunction1DVoid___call__ (BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
 
 PyDoc_STRVAR (integration_type_doc, "The integration method.\n" "\n" ":type: :class:`IntegrationType`")
 
static PyObject * integration_type_get (BPy_UnaryFunction1DVoid *self, void *)
 
static int integration_type_set (BPy_UnaryFunction1DVoid *self, PyObject *value, void *)
 

Variables

static PyGetSetDef BPy_UnaryFunction1DVoid_getseters []
 
PyTypeObject UnaryFunction1DVoid_Type
 

Function Documentation

◆ integration_type_get()

static PyObject * integration_type_get ( BPy_UnaryFunction1DVoid * self,
void *  )
static

◆ integration_type_set()

static int integration_type_set ( BPy_UnaryFunction1DVoid * self,
PyObject * value,
void *  )
static

◆ PyDoc_STRVAR() [1/2]

PyDoc_STRVAR ( integration_type_doc ,
"The integration method.\n" "\n" ":type: :class:`IntegrationType`"  )

◆ PyDoc_STRVAR() [2/2]

PyDoc_STRVAR ( UnaryFunction1DVoid___doc__ ,
"Class hierarchy: :class:`UnaryFunction1D` ,
:class:`UnaryFunction1DVoid`\n" "\n" "Base class for unary functions(functors) working on\n" ":class:`Interface1D`.\n" "\n" ".. method::__init__()\n" " __init__(integration_type)\n" "\n" " Builds a unary 1D function using either a default constructor\n" " or the integration method given as an argument.\n" "\n" " :arg integration_type:An integration method.\n" " :type integration_type::class:`IntegrationType`\n"  )

◆ UnaryFunction1DVoid___call__()

static PyObject * UnaryFunction1DVoid___call__ ( BPy_UnaryFunction1DVoid * self,
PyObject * args,
PyObject * kwds )
static

Definition at line 114 of file BPy_UnaryFunction1DVoid.cpp.

References Interface1D_Type, and self.

◆ UnaryFunction1DVoid___dealloc__()

static void UnaryFunction1DVoid___dealloc__ ( BPy_UnaryFunction1DVoid * self)
static

Definition at line 103 of file BPy_UnaryFunction1DVoid.cpp.

References self, and UnaryFunction1D_Type.

◆ UnaryFunction1DVoid___init__()

static int UnaryFunction1DVoid___init__ ( BPy_UnaryFunction1DVoid * self,
PyObject * args,
PyObject * kwds )
static

◆ UnaryFunction1DVoid___repr__()

static PyObject * UnaryFunction1DVoid___repr__ ( BPy_UnaryFunction1DVoid * self)
static

Definition at line 109 of file BPy_UnaryFunction1DVoid.cpp.

References self.

◆ UnaryFunction1DVoid_Init()

int UnaryFunction1DVoid_Init ( PyObject * module)

Variable Documentation

◆ BPy_UnaryFunction1DVoid_getseters

PyGetSetDef BPy_UnaryFunction1DVoid_getseters[]
static
Initial value:
= {
{"integration_type",
integration_type_doc,
nullptr},
{nullptr, nullptr, nullptr, nullptr, nullptr}
}
static int integration_type_set(BPy_UnaryFunction1DVoid *self, PyObject *value, void *)
static PyObject * integration_type_get(BPy_UnaryFunction1DVoid *self, void *)

Definition at line 163 of file BPy_UnaryFunction1DVoid.cpp.

◆ UnaryFunction1DVoid_Type

PyTypeObject UnaryFunction1DVoid_Type

Definition at line 174 of file BPy_UnaryFunction1DVoid.cpp.

Referenced by Operators_chain(), and UnaryFunction1DVoid_Init().