Differential D9170 Diff 29819 source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp
| Show All 34 Lines | |||||
| PyDoc_STRVAR(Chain_doc, | PyDoc_STRVAR(Chain_doc, | ||||
| "Class hierarchy: :class:`Interface1D` > :class:`Curve` > :class:`Chain`\n" | "Class hierarchy: :class:`Interface1D` > :class:`Curve` > :class:`Chain`\n" | ||||
| "\n" | "\n" | ||||
| "Class to represent a 1D elements issued from the chaining process. A\n" | "Class to represent a 1D elements issued from the chaining process. A\n" | ||||
| "Chain is the last step before the :class:`Stroke` and is used in the\n" | "Chain is the last step before the :class:`Stroke` and is used in the\n" | ||||
| "Splitting and Creation processes.\n" | "Splitting and Creation processes.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(brother)\n" | |||||
| " __init__(id)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds a :class:`Chain` using the default constructor,\n" | ||||
| "\n" | " copy constructor or from an :class:`Id`.\n" | ||||
| ".. method:: __init__(brother)\n" | |||||
| "\n" | |||||
| " Copy constructor.\n" | |||||
| "\n" | "\n" | ||||
| " :arg brother: A Chain object.\n" | " :arg brother: A Chain object.\n" | ||||
| " :type brother: :class:`Chain`\n" | " :type brother: :class:`Chain`\n" | ||||
| "\n" | |||||
| ".. method:: __init__(id)\n" | |||||
| "\n" | |||||
| " Builds a chain from its Id.\n" | |||||
| "\n" | |||||
| " :arg id: An Id object.\n" | " :arg id: An Id object.\n" | ||||
| " :type id: :class:`Id`"); | " :type id: :class:`Id`"); | ||||
| static int Chain_init(BPy_Chain *self, PyObject *args, PyObject *kwds) | static int Chain_init(BPy_Chain *self, PyObject *args, PyObject *kwds) | ||||
| { | { | ||||
| static const char *kwlist_1[] = {"brother", NULL}; | static const char *kwlist_1[] = {"brother", NULL}; | ||||
| static const char *kwlist_2[] = {"id", NULL}; | static const char *kwlist_2[] = {"id", NULL}; | ||||
| PyObject *obj = 0; | PyObject *obj = 0; | ||||
| ▲ Show 20 Lines • Show All 134 Lines • Show Last 20 Lines | |||||