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:
authorYimingWu <xp8110@outlook.com>2019-11-17 15:10:38 +0300
committerYimingWu <xp8110@outlook.com>2019-11-17 15:10:38 +0300
commitef1cd34e8d79adec2600085aa830e88c3f92e569 (patch)
treef3615ad94447e296a14a4d1401249453546b1f35 /source/blender/python
parentdba890910d50a673b18db88578e8bb3ca99203b8 (diff)
parentfb1cbbaf4677e871ed551a7b7858937721e29016 (diff)
Merge remote-tracking branch 'origin/master' into arcpatch-D5442
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c
index 0de1ffb9879..c64d6b09387 100644
--- a/source/blender/python/mathutils/mathutils_Quaternion.c
+++ b/source/blender/python/mathutils/mathutils_Quaternion.c
@@ -180,7 +180,7 @@ PyDoc_STRVAR(Quaternion_to_swing_twist_doc,
".. method:: to_swing_twist(axis)\n"
"\n"
" Split the rotation into a swing quaternion with the specified\n"
- "axis fixed at zero, and the remaining twist rotation angle.\n"
+ " axis fixed at zero, and the remaining twist rotation angle.\n"
"\n"
" :arg axis: twist axis as a string in ['X', 'Y', 'Z']\n"
" :return: swing, twist angle.\n"
@@ -203,7 +203,7 @@ static PyObject *Quaternion_to_swing_twist(QuaternionObject *self, PyObject *axi
else {
PyErr_SetString(PyExc_ValueError,
"Quaternion.to_swing_twist(): "
- "the axis agrument must be "
+ "the axis argument must be "
"a string in 'X', 'Y', 'Z'");
return NULL;
}
@@ -226,7 +226,7 @@ PyDoc_STRVAR(
"\n"
" Return the exponential map representation of the quaternion.\n"
"\n"
- " This representation consist of the rotation axis multiplied by the rotation angle."
+ " This representation consist of the rotation axis multiplied by the rotation angle.\n"
" Such a representation is useful for interpolation between multiple orientations.\n"
"\n"
" :return: exponential map.\n"