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:
authorBrecht Van Lommel <brecht@blender.org>2020-10-01 15:29:26 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-10-01 15:29:45 +0300
commit2caa6dd7f87ac5e0fecbefca9054d7a3ca7948a2 (patch)
treeb6cc0a5a92451acecf2851acf141dc6ddb52411e /source/blender/python/mathutils/mathutils_Matrix.c
parent5d824c421222f8387dabaeb3db5ef99ded094b01 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Matrix.c')
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index 427fcad5155..0b9fa1841ec 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -1718,15 +1718,14 @@ static PyObject *Matrix_adjugate(MatrixObject *self)
Py_RETURN_NONE;
}
-PyDoc_STRVAR(
- Matrix_adjugated_doc,
- ".. method:: adjugated()\n"
- "\n"
- " Return an adjugated copy of the matrix.\n"
- "\n"
- " :return: the adjugated matrix.\n"
- " :rtype: :class:`Matrix`\n"
- " :raises ValueError: if the matrix cannot be adjugated\n");
+PyDoc_STRVAR(Matrix_adjugated_doc,
+ ".. method:: adjugated()\n"
+ "\n"
+ " Return an adjugated copy of the matrix.\n"
+ "\n"
+ " :return: the adjugated matrix.\n"
+ " :rtype: :class:`Matrix`\n"
+ " :raises ValueError: if the matrix cannot be adjugated\n");
static PyObject *Matrix_adjugated(MatrixObject *self)
{
return matrix__apply_to_copy(Matrix_adjugate, self);