Differential D9170 Diff 29817 source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp
| Show All 32 Lines | |||||
| PyDoc_STRVAR(NonTVertex_doc, | PyDoc_STRVAR(NonTVertex_doc, | ||||
| "Class hierarchy: :class:`Interface0D` > :class:`ViewVertex` > :class:`NonTVertex`\n" | "Class hierarchy: :class:`Interface0D` > :class:`ViewVertex` > :class:`NonTVertex`\n" | ||||
| "\n" | "\n" | ||||
| "View vertex for corners, cusps, etc. associated to a single SVertex.\n" | "View vertex for corners, cusps, etc. associated to a single SVertex.\n" | ||||
| "Can be associated to 2 or more view edges.\n" | "Can be associated to 2 or more view edges.\n" | ||||
| "\n" | "\n" | ||||
| ".. method:: __init__()\n" | ".. method:: __init__()\n" | ||||
| " __init__(svertex)\n" | |||||
| "\n" | "\n" | ||||
| " Default constructor.\n" | " Builds a :class:`NonTVertex` using the default constructor or a :class:`SVertex`.\n" | ||||
| "\n" | |||||
| ".. method:: __init__(svertex)\n" | |||||
| "\n" | |||||
| " Build a NonTVertex from a SVertex.\n" | |||||
| "\n" | "\n" | ||||
| " :arg svertex: An SVertex object.\n" | " :arg svertex: An SVertex object.\n" | ||||
| " :type svertex: :class:`SVertex`"); | " :type svertex: :class:`SVertex`"); | ||||
| /* Note: No copy constructor in Python because the C++ copy constructor is 'protected'. */ | /* Note: No copy constructor in Python because the C++ copy constructor is 'protected'. */ | ||||
| static int NonTVertex_init(BPy_NonTVertex *self, PyObject *args, PyObject *kwds) | static int NonTVertex_init(BPy_NonTVertex *self, PyObject *args, PyObject *kwds) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 99 Lines • Show Last 20 Lines | |||||