Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/mathutils/mathutils_Matrix.c
| Context not available. | |||||
| } | } | ||||
| PyDoc_STRVAR(Matrix_row_doc, | PyDoc_STRVAR(Matrix_row_doc, | ||||
| "Access the matix by rows (default), (read-only).\n\n:type: Matrix Access" | "Access the matrix by rows (default), (read-only).\n\n:type: Matrix Access" | ||||
| ); | ); | ||||
| static PyObject *Matrix_row_get(MatrixObject *self, void *UNUSED(closure)) | static PyObject *Matrix_row_get(MatrixObject *self, void *UNUSED(closure)) | ||||
| { | { | ||||
| Context not available. | |||||
| } | } | ||||
| PyDoc_STRVAR(Matrix_col_doc, | PyDoc_STRVAR(Matrix_col_doc, | ||||
| "Access the matix by colums, 3x3 and 4x4 only, (read-only).\n\n:type: Matrix Access" | "Access the matrix by columns, 3x3 and 4x4 only, (read-only).\n\n:type: Matrix Access" | ||||
| ); | ); | ||||
| static PyObject *Matrix_col_get(MatrixObject *self, void *UNUSED(closure)) | static PyObject *Matrix_col_get(MatrixObject *self, void *UNUSED(closure)) | ||||
| { | { | ||||
| Context not available. | |||||
| " matrices from 2x2 up to 4x4.\n" | " matrices from 2x2 up to 4x4.\n" | ||||
| "\n" | "\n" | ||||
| " :param rows: Sequence of rows.\n" | " :param rows: Sequence of rows.\n" | ||||
| " When ommitted, a 4x4 identity matrix is constructed.\n" | " When omitted, a 4x4 identity matrix is constructed.\n" | ||||
| " :type rows: 2d number sequence\n" | " :type rows: 2d number sequence\n" | ||||
| ); | ); | ||||
| PyTypeObject matrix_Type = { | PyTypeObject matrix_Type = { | ||||
| Context not available. | |||||