Blender  V3.3
Functions | Variables
BPy_UnaryFunction1DEdgeNature.cpp File Reference
#include "BPy_UnaryFunction1DEdgeNature.h"
#include "../BPy_Convert.h"
#include "../BPy_IntegrationType.h"
#include "../BPy_Interface1D.h"
#include "UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.h"

Go to the source code of this file.

Functions

int UnaryFunction1DEdgeNature_Init (PyObject *module)
 
static int UnaryFunction1DEdgeNature___init__ (BPy_UnaryFunction1DEdgeNature *self, PyObject *args, PyObject *kwds)
 
static void UnaryFunction1DEdgeNature___dealloc__ (BPy_UnaryFunction1DEdgeNature *self)
 
static PyObject * UnaryFunction1DEdgeNature___repr__ (BPy_UnaryFunction1DEdgeNature *self)
 
static PyObject * UnaryFunction1DEdgeNature___call__ (BPy_UnaryFunction1DEdgeNature *self, PyObject *args, PyObject *kwds)
 
 PyDoc_STRVAR (integration_type_doc, "The integration method.\n" "\n" ":type: :class:`IntegrationType`")
 
static PyObject * integration_type_get (BPy_UnaryFunction1DEdgeNature *self, void *UNUSED(closure))
 
static int integration_type_set (BPy_UnaryFunction1DEdgeNature *self, PyObject *value, void *UNUSED(closure))
 

Variables

static char UnaryFunction1DEdgeNature___doc__ []
 
static PyGetSetDef BPy_UnaryFunction1DEdgeNature_getseters []
 
PyTypeObject UnaryFunction1DEdgeNature_Type
 

Function Documentation

◆ integration_type_get()

static PyObject* integration_type_get ( BPy_UnaryFunction1DEdgeNature self,
void UNUSEDclosure 
)
static

◆ integration_type_set()

static int integration_type_set ( BPy_UnaryFunction1DEdgeNature self,
PyObject *  value,
void UNUSEDclosure 
)
static

◆ PyDoc_STRVAR()

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

◆ UnaryFunction1DEdgeNature___call__()

static PyObject* UnaryFunction1DEdgeNature___call__ ( BPy_UnaryFunction1DEdgeNature self,
PyObject *  args,
PyObject *  kwds 
)
static

◆ UnaryFunction1DEdgeNature___dealloc__()

static void UnaryFunction1DEdgeNature___dealloc__ ( BPy_UnaryFunction1DEdgeNature self)
static

Definition at line 89 of file BPy_UnaryFunction1DEdgeNature.cpp.

References UnaryFunction1D_Type.

◆ UnaryFunction1DEdgeNature___init__()

static int UnaryFunction1DEdgeNature___init__ ( BPy_UnaryFunction1DEdgeNature self,
PyObject *  args,
PyObject *  kwds 
)
static

◆ UnaryFunction1DEdgeNature___repr__()

static PyObject* UnaryFunction1DEdgeNature___repr__ ( BPy_UnaryFunction1DEdgeNature self)
static

Definition at line 95 of file BPy_UnaryFunction1DEdgeNature.cpp.

References self.

◆ UnaryFunction1DEdgeNature_Init()

int UnaryFunction1DEdgeNature_Init ( PyObject *  module)

Variable Documentation

◆ BPy_UnaryFunction1DEdgeNature_getseters

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

Definition at line 150 of file BPy_UnaryFunction1DEdgeNature.cpp.

◆ UnaryFunction1DEdgeNature___doc__

char UnaryFunction1DEdgeNature___doc__[]
static
Initial value:
=
"Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DEdgeNature`\n"
"\n"
"Base class for unary functions (functors) that work on\n"
":class:`Interface1D` and return a :class:`Nature` object.\n"
"\n"
".. method:: __init__()\n"
" __init__(integration_type)\n"
"\n"
" Builds a unary 1D function using the 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"

Definition at line 49 of file BPy_UnaryFunction1DEdgeNature.cpp.

◆ UnaryFunction1DEdgeNature_Type

PyTypeObject UnaryFunction1DEdgeNature_Type

Definition at line 161 of file BPy_UnaryFunction1DEdgeNature.cpp.

Referenced by UnaryFunction1DEdgeNature_Init().