60 PyModule_AddObjectRef(
66 PyModule_AddObjectRef(
module,
67 "GetDirectionalViewMapDensityF1D",
88 PyModule_AddObjectRef(
94 PyModule_AddObjectRef(
129 UnaryFunction1DDouble___doc__,
130 "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DDouble`\n"
132 "Base class for unary functions (functors) that work on\n"
133 ":class:`Interface1D` and return a float value.\n"
135 ".. method:: __init__()\n"
136 " __init__(integration_type)\n"
138 " Builds a unary 1D function using the default constructor\n"
139 " or the integration method given as an argument.\n"
141 " :arg integration_type: An integration method.\n"
142 " :type integration_type: :class:`IntegrationType`\n");
147 static const char *kwlist[] = {
"integration",
nullptr};
148 PyObject *obj =
nullptr;
150 if (!PyArg_ParseTupleAndKeywords(
163 self->uf1D_double->py_uf1D = (PyObject *)
self;
170 delete self->uf1D_double;
176 return PyUnicode_FromFormat(
"type: %s - address: %p", Py_TYPE(
self)->tp_name,
self->uf1D_double);
183 static const char *kwlist[] = {
"inter",
nullptr};
184 PyObject *obj =
nullptr;
186 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"O!", (
char **)kwlist, &
Interface1D_Type, &obj)) {
191 PyErr_SetString(PyExc_TypeError,
"__call__ method not properly overridden");
195 if (!PyErr_Occurred()) {
196 string class_name(Py_TYPE(
self)->tp_name);
197 PyErr_SetString(PyExc_RuntimeError, (class_name +
" __call__ method failed").c_str());
201 return PyFloat_FromDouble(
self->uf1D_double->result);
208 integration_type_doc,
209 "The integration method.\n"
211 ":type: :class:`IntegrationType`\n");
222 PyErr_SetString(PyExc_TypeError,
"value must be an IntegrationType");
233 integration_type_doc,
235 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
241 PyVarObject_HEAD_INIT(
nullptr, 0)
242 "UnaryFunction1DDouble",
260 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
261 UnaryFunction1DDouble___doc__,
IntegrationType IntegrationType_from_BPy_IntegrationType(PyObject *obj)
PyObject * BPy_IntegrationType_from_IntegrationType(IntegrationType i)
PyTypeObject Curvature2DAngleF1D_Type
PyTypeObject DensityF1D_Type
PyTypeObject GetCompleteViewMapDensityF1D_Type
PyTypeObject GetDirectionalViewMapDensityF1D_Type
PyTypeObject GetProjectedXF1D_Type
PyTypeObject GetProjectedYF1D_Type
PyTypeObject GetProjectedZF1D_Type
PyTypeObject GetSteerableViewMapDensityF1D_Type
PyTypeObject GetViewMapGradientNormF1D_Type
PyTypeObject GetXF1D_Type
PyTypeObject GetYF1D_Type
PyTypeObject GetZF1D_Type
PyTypeObject IntegrationType_Type
#define BPy_IntegrationType_Check(v)
PyTypeObject Interface1D_Type
PyTypeObject LocalAverageDepthF1D_Type
static int UnaryFunction1DDouble___init__(BPy_UnaryFunction1DDouble *self, PyObject *args, PyObject *kwds)
static void UnaryFunction1DDouble___dealloc__(BPy_UnaryFunction1DDouble *self)
int UnaryFunction1DDouble_Init(PyObject *module)
static PyObject * UnaryFunction1DDouble___call__(BPy_UnaryFunction1DDouble *self, PyObject *args, PyObject *kwds)
static PyObject * integration_type_get(BPy_UnaryFunction1DDouble *self, void *)
PyTypeObject UnaryFunction1DDouble_Type
static int integration_type_set(BPy_UnaryFunction1DDouble *self, PyObject *value, void *)
static PyObject * UnaryFunction1DDouble___repr__(BPy_UnaryFunction1DDouble *self)
static PyGetSetDef BPy_UnaryFunction1DDouble_getseters[]
PyDoc_STRVAR(UnaryFunction1DDouble___doc__, "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DDouble`\n" "\n" "Base class for unary functions (functors) that work on\n" ":class:`Interface1D` and return a float value.\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")
PyTypeObject UnaryFunction1D_Type
PyTypeObject ZDiscontinuityF1D_Type
static struct PyModuleDef module