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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-16 05:11:37 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-06-16 05:12:52 +0400
commit8365cebe32089dc1dc962a42361ceea936ffe82d (patch)
tree668e3fca1df7ac8b7e4b6735ab51904dc2ac9d17 /source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
parent840891e22a12c7bbb7c3b8d086ef0c6ff11a24d9 (diff)
Freestyle: Python API docstring updates.
Diffstat (limited to 'source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
index 9deaf1ac364..2427953b527 100644
--- a/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
@@ -287,13 +287,13 @@ static PyObject *Stroke_stroke_vertices_end(BPy_Stroke *self)
}
PyDoc_STRVAR(Stroke_reversed_doc,
- ".. method:: __reversed__()\n"
- "\n"
- " Returns a StrokeVertexIterator iterating over the vertices of the Stroke\n"
- " in the reversed order (from the last to the first).\n"
- "\n"
- " :return: A StrokeVertexIterator pointing after the last StrokeVertex.\n"
- " :rtype: :class:`StrokeVertexIterator`");
+".. method:: __reversed__()\n"
+"\n"
+" Returns a StrokeVertexIterator iterating over the vertices of the Stroke\n"
+" in the reversed order (from the last to the first).\n"
+"\n"
+" :return: A StrokeVertexIterator pointing after the last StrokeVertex.\n"
+" :rtype: :class:`StrokeVertexIterator`");
static PyObject *Stroke_reversed(BPy_Stroke *self)
{