Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp35
1 files changed, 9 insertions, 26 deletions
diff --git a/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp b/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp
index 519bd72db3b..5c1a8f8482f 100644
--- a/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp
+++ b/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp
@@ -40,46 +40,29 @@ PyDoc_STRVAR(
"Class to define a stroke vertex.\n"
"\n"
".. method:: __init__()\n"
+ " __init__(brother)\n"
+ " __init__(first_vertex, second_vertex, t3d)\n"
+ " __init__(point)\n"
+ " __init__(svertex)\n"
+ " __init__(svertex, attribute)\n"
"\n"
- " Default constructor.\n"
- "\n"
- ".. method:: __init__(brother)\n"
- "\n"
- " Copy constructor.\n"
+ " Builds a :class:`StrokeVertex` using the default constructor,\n"
+ " copy constructor, from 2 :class:`StrokeVertex` and an interpolation parameter,\n"
+ " from a CurvePoint, from a SVertex, or a :class:`SVertex`"
+ " and a :class:`StrokeAttribute` object.\n"
"\n"
" :arg brother: A StrokeVertex object.\n"
" :type brother: :class:`StrokeVertex`\n"
- "\n"
- ".. method:: __init__(first_vertex, second_vertex, t3d)\n"
- "\n"
- " Build a stroke vertex from 2 stroke vertices and an interpolation\n"
- " parameter.\n"
- "\n"
" :arg first_vertex: The first StrokeVertex.\n"
" :type first_vertex: :class:`StrokeVertex`\n"
" :arg second_vertex: The second StrokeVertex.\n"
" :type second_vertex: :class:`StrokeVertex`\n"
" :arg t3d: An interpolation parameter.\n"
" :type t3d: float\n"
- "\n"
- ".. method:: __init__(point)\n"
- "\n"
- " Build a stroke vertex from a CurvePoint\n"
- "\n"
" :arg point: A CurvePoint object.\n"
" :type point: :class:`CurvePoint`\n"
- "\n"
- ".. method:: __init__(svertex)\n"
- "\n"
- " Build a stroke vertex from a SVertex\n"
- "\n"
" :arg svertex: An SVertex object.\n"
" :type svertex: :class:`SVertex`\n"
- "\n"
- ".. method:: __init__(svertex, attribute)\n"
- "\n"
- " Build a stroke vertex from an SVertex and a StrokeAttribute object.\n"
- "\n"
" :arg svertex: An SVertex object.\n"
" :type svertex: :class:`SVertex`\n"
" :arg attribute: A StrokeAttribute object.\n"