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/BPy_StrokeAttribute.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp24
1 files changed, 7 insertions, 17 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
index 214385f74ad..3718fddcf20 100644
--- a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
+++ b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
@@ -53,20 +53,16 @@ PyDoc_STRVAR(StrokeAttribute_doc,
"Vertex.\n"
"\n"
".. method:: __init__()\n"
+ " __init__(brother)\n"
+ " __init__(red, green, blue, alpha, thickness_right, thickness_left)\n"
+ " __init__(attribute1, attribute2, t)\n"
"\n"
- " Default constructor.\n"
+ " Creates a :class:`StrokeAttribute` object using either a default constructor,\n"
+ " copy constructor, overloaded constructor, or and interpolation constructor\n"
+ " to interpolate between two :class:`StrokeAttribute` objects.\n"
"\n"
- ".. method:: __init__(brother)\n"
- "\n"
- " Copy constructor.\n"
- "\n"
- " :arg brother: A StrokeAttribute object.\n"
+ " :arg brother: A StrokeAttribute object to be used as a copy constructor.\n"
" :type brother: :class:`StrokeAttribute`\n"
- "\n"
- ".. method:: __init__(red, green, blue, alpha, thickness_right, thickness_left)\n"
- "\n"
- " Build a stroke vertex attribute from a set of parameters.\n"
- "\n"
" :arg red: Red component of a stroke color.\n"
" :type red: float\n"
" :arg green: Green component of a stroke color.\n"
@@ -79,12 +75,6 @@ PyDoc_STRVAR(StrokeAttribute_doc,
" :type thickness_right: float\n"
" :arg thickness_left: Stroke thickness on the left.\n"
" :type thickness_left: float\n"
- "\n"
- ".. method:: __init__(attribute1, attribute2, t)\n"
- "\n"
- " Interpolation constructor. Build a StrokeAttribute from two\n"
- " StrokeAttribute objects and an interpolation parameter.\n"
- "\n"
" :arg attribute1: The first StrokeAttribute object.\n"
" :type attribute1: :class:`StrokeAttribute`\n"
" :arg attribute2: The second StrokeAttribute object.\n"