Differential D9170 Diff 29818 source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp
| Show All 33 Lines | |||||
| PyDoc_STRVAR(CurvePointIterator_doc, | PyDoc_STRVAR(CurvePointIterator_doc, | ||||
| "Class hierarchy: :class:`Iterator` > :class:`CurvePointIterator`\n" | "Class hierarchy: :class:`Iterator` > :class:`CurvePointIterator`\n" | ||||
| "\n" | "\n" | ||||
| "Class representing an iterator on a curve. Allows an iterating\n" | "Class representing an iterator on a curve. Allows an iterating\n" | ||||
| "outside initial vertices. A CurvePoint is instantiated and returned\n" | "outside initial vertices. A CurvePoint is instantiated and returned\n" | ||||
| "through the .object attribute.\n" | "through the .object attribute.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(brother)\n" | |||||
| " __init__(step=0.0)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds a CurvePointIterator object using either the default constructor,\n" | ||||
| "\n" | " copy constructor, or the overloaded constructor.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: A CurvePointIterator object.\n" | " :arg brother: A CurvePointIterator object.\n" | ||||
| " :type brother: :class:`CurvePointIterator`\n" | " :type brother: :class:`CurvePointIterator`\n" | ||||
| "\n" | |||||
| ".. method:: __init__(step=0.0)\n" | |||||
| "\n" | |||||
| " Builds a CurvePointIterator object.\n" | |||||
| "\n" | |||||
| " :arg step: A resampling resolution with which the curve is resampled.\n" | " :arg step: A resampling resolution with which the curve is resampled.\n" | ||||
| " If zero, no resampling is done (i.e., the iterator iterates over\n" | " If zero, no resampling is done (i.e., the iterator iterates over\n" | ||||
| " initial vertices).\n" | " initial vertices).\n" | ||||
| " :type step: float"); | " :type step: float"); | ||||
| static int CurvePointIterator_init(BPy_CurvePointIterator *self, PyObject *args, PyObject *kwds) | static int CurvePointIterator_init(BPy_CurvePointIterator *self, PyObject *args, PyObject *kwds) | ||||
| { | { | ||||
| static const char *kwlist_1[] = {"brother", NULL}; | static const char *kwlist_1[] = {"brother", NULL}; | ||||
| ▲ Show 20 Lines • Show All 120 Lines • Show Last 20 Lines | |||||