Documentation: updated mathutils documentation
Added descriptions of the constructors, and improved the module-level documentation.
This commit is contained in:
@@ -2716,7 +2716,14 @@ static struct PyMethodDef Matrix_methods[] = {
|
||||
|
||||
/*------------------PY_OBECT DEFINITION--------------------------*/
|
||||
PyDoc_STRVAR(matrix_doc,
|
||||
"This object gives access to Matrices in Blender."
|
||||
".. class:: Matrix([rows])\n"
|
||||
"\n"
|
||||
" This object gives access to Matrices in Blender, supporting square and rectangular\n"
|
||||
" matrices from 2x2 up to 4x4.\n"
|
||||
"\n"
|
||||
" :param rows: Sequence of rows.\n"
|
||||
" When ommitted, a 4x4 identity matrix is constructed.\n"
|
||||
" :type rows: 2d number sequence\n"
|
||||
);
|
||||
PyTypeObject matrix_Type = {
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
|
||||
Reference in New Issue
Block a user