|
Blender V4.3
|
#include "BPy_UnaryFunction1D.h"#include "UnaryFunction1D/BPy_UnaryFunction1DDouble.h"#include "UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.h"#include "UnaryFunction1D/BPy_UnaryFunction1DFloat.h"#include "UnaryFunction1D/BPy_UnaryFunction1DUnsigned.h"#include "UnaryFunction1D/BPy_UnaryFunction1DVec2f.h"#include "UnaryFunction1D/BPy_UnaryFunction1DVec3f.h"#include "UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h"#include "UnaryFunction1D/BPy_UnaryFunction1DVoid.h"Go to the source code of this file.
Functions | |
| int | UnaryFunction1D_Init (PyObject *module) |
| PyDoc_STRVAR (UnaryFunction1D___doc__, "Base class for Unary Functions (functors) working on\n" ":class:`Interface1D`. A unary function will be used by invoking\n" "__call__() on an Interface1D. In Python, several different subclasses\n" "of UnaryFunction1D are used depending on the types of functors' return\n" "values. For example, you would inherit from a\n" ":class:`UnaryFunction1DDouble` if you wish to define a function that\n" "returns a double value. Available UnaryFunction1D subclasses are:\n" "\n" "* :class:`UnaryFunction1DDouble`\n" "* :class:`UnaryFunction1DEdgeNature`\n" "* :class:`UnaryFunction1DFloat`\n" "* :class:`UnaryFunction1DUnsigned`\n" "* :class:`UnaryFunction1DVec2f`\n" "* :class:`UnaryFunction1DVec3f`\n" "* :class:`UnaryFunction1DVectorViewShape`\n" "* :class:`UnaryFunction1DVoid`\n") | |
| static void | UnaryFunction1D___dealloc__ (BPy_UnaryFunction1D *self) |
| static PyObject * | UnaryFunction1D___repr__ (BPy_UnaryFunction1D *) |
| PyDoc_STRVAR (UnaryFunction1D_name_doc, "The name of the unary 1D function.\n" "\n" ":type: str") | |
| static PyObject * | UnaryFunction1D_name_get (BPy_UnaryFunction1D *self, void *) |
Variables | |
| static PyGetSetDef | BPy_UnaryFunction1D_getseters [] |
| PyTypeObject | UnaryFunction1D_Type |
| PyDoc_STRVAR | ( | UnaryFunction1D___doc__ | , |
| "Base class for Unary Functions (functors) working on\n" ":class:`Interface1D`. A unary function will be used by invoking\n" "__call__() on an Interface1D. In | Python, | ||
| several different subclasses\n" "of UnaryFunction1D are used depending on the types of functors' return\n" "values. For | example, | ||
| you would inherit from a\n" ":class:`UnaryFunction1DDouble` if you wish to define a function that\n" "returns a double value. Available UnaryFunction1D subclasses are:\n" "\n" " *:class:`UnaryFunction1DDouble`\n" " *:class:`UnaryFunction1DEdgeNature`\n" " *:class:`UnaryFunction1DFloat`\n" " *:class:`UnaryFunction1DUnsigned`\n" " *:class:`UnaryFunction1DVec2f`\n" " *:class:`UnaryFunction1DVec3f`\n" " *:class:`UnaryFunction1DVectorViewShape`\n" " *:class:`UnaryFunction1DVoid`\n" | ) |
| PyDoc_STRVAR | ( | UnaryFunction1D_name_doc | , |
| "The name of the unary 1D function.\n" "\n" ":type: str" | ) |
|
static |
Definition at line 74 of file BPy_UnaryFunction1D.cpp.
References self.
|
static |
Definition at line 79 of file BPy_UnaryFunction1D.cpp.
| int UnaryFunction1D_Init | ( | PyObject * | module | ) |
Definition at line 29 of file BPy_UnaryFunction1D.cpp.
References module, UnaryFunction1D_Type, UnaryFunction1DDouble_Init(), UnaryFunction1DEdgeNature_Init(), UnaryFunction1DFloat_Init(), UnaryFunction1DUnsigned_Init(), UnaryFunction1DVec2f_Init(), UnaryFunction1DVec3f_Init(), UnaryFunction1DVectorViewShape_Init(), and UnaryFunction1DVoid_Init().
Referenced by Freestyle_Init().
|
static |
Definition at line 93 of file BPy_UnaryFunction1D.cpp.
References self.
|
static |
Definition at line 98 of file BPy_UnaryFunction1D.cpp.
| PyTypeObject UnaryFunction1D_Type |
Definition at line 109 of file BPy_UnaryFunction1D.cpp.
Referenced by UnaryFunction1D_Init(), UnaryFunction1DDouble___dealloc__(), UnaryFunction1DEdgeNature___dealloc__(), UnaryFunction1DFloat___dealloc__(), UnaryFunction1DUnsigned___dealloc__(), UnaryFunction1DVec2f___dealloc__(), UnaryFunction1DVec3f___dealloc__(), UnaryFunction1DVectorViewShape___dealloc__(), and UnaryFunction1DVoid___dealloc__().