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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-14 01:04:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-14 01:05:07 +0300
commit72369c638d936a76ba58c98b4b89626f6ff28f32 (patch)
treeb66a7025c305d8834cd1830cc93b27bfab47faf9 /source/blender/python/mathutils/mathutils_Quaternion.c
parent4a71102309c9c081d96c3e6478212f875879f4bb (diff)
Cleanup: python doc-strings
Indentation & trailing space.
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Quaternion.c')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c
index c3251a28b94..a2b4480584a 100644
--- a/source/blender/python/mathutils/mathutils_Quaternion.c
+++ b/source/blender/python/mathutils/mathutils_Quaternion.c
@@ -1371,17 +1371,17 @@ PyDoc_STRVAR(quaternion_doc,
" The constructor takes arguments in various forms:\n"
"\n"
" (), *no args*\n"
-" Create an identity quaternion\n"
+" Create an identity quaternion\n"
" (*wxyz*)\n"
-" Create a quaternion from a ``(w, x, y, z)`` vector.\n"
+" Create a quaternion from a ``(w, x, y, z)`` vector.\n"
" (*exponential_map*)\n"
-" Create a quaternion from a 3d exponential map vector.\n"
+" Create a quaternion from a 3d exponential map vector.\n"
"\n"
-" .. seealso:: :meth:`to_exponential_map`\n"
+" .. seealso:: :meth:`to_exponential_map`\n"
" (*axis, angle*)\n"
-" Create a quaternion representing a rotation of *angle* radians over *axis*.\n"
+" Create a quaternion representing a rotation of *angle* radians over *axis*.\n"
"\n"
-" .. seealso:: :meth:`to_axis_angle`\n"
+" .. seealso:: :meth:`to_axis_angle`\n"
);
PyTypeObject quaternion_Type = {
PyVarObject_HEAD_INIT(NULL, 0)