Cleanup: clang-format
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user