Differential D9170 Diff 29818 source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp
| Show First 20 Lines • Show All 74 Lines • ▼ Show 20 Lines | |||||
| static char UnaryFunction1DVectorViewShape___doc__[] = | static char UnaryFunction1DVectorViewShape___doc__[] = | ||||
| "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVectorViewShape`\n" | "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVectorViewShape`\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 list of :class:`ViewShape`\n" | ":class:`Interface1D` and return a list of :class:`ViewShape`\n" | ||||
| "objects.\n" | "objects.\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 UnaryFunction1DVectorViewShape___init__(BPy_UnaryFunction1DVectorViewShape *self, | static int UnaryFunction1DVectorViewShape___init__(BPy_UnaryFunction1DVectorViewShape *self, | ||||
| PyObject *args, | PyObject *args, | ||||
| PyObject *kwds) | PyObject *kwds) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 148 Lines • Show Last 20 Lines | |||||