Differential D9170 Diff 29817 source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp
| Show First 20 Lines • Show All 154 Lines • ▼ Show 20 Lines | |||||
| static char UnaryFunction1DDouble___doc__[] = | static char UnaryFunction1DDouble___doc__[] = | ||||
| "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DDouble`\n" | "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DDouble`\n" | ||||
| "\n" | "\n" | ||||
| "Base class for unary functions (functors) that work on\n" | "Base class for unary functions (functors) that work on\n" | ||||
| ":class:`Interface1D` and return a float value.\n" | ":class:`Interface1D` and return a float value.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(integration_type)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds a unary 1D function using the default constructor\n" | ||||
| "\n" | " or the integration method given as an argument.\n" | ||||
| ".. method:: __init__(integration_type)\n" | |||||
| "\n" | |||||
| " Builds a unary 1D function using the integration method given as\n" | |||||
| " argument.\n" | |||||
| "\n" | "\n" | ||||
| " :arg integration_type: An integration method.\n" | " :arg integration_type: An integration method.\n" | ||||
| " :type integration_type: :class:`IntegrationType`\n"; | " :type integration_type: :class:`IntegrationType`\n"; | ||||
| static int UnaryFunction1DDouble___init__(BPy_UnaryFunction1DDouble *self, | static int UnaryFunction1DDouble___init__(BPy_UnaryFunction1DDouble *self, | ||||
| PyObject *args, | PyObject *args, | ||||
| PyObject *kwds) | PyObject *kwds) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 136 Lines • Show Last 20 Lines | |||||