1234567891011121314151617181920212223242526272829303132333435363738 |
- Matrix3 - A 3x3 matrix
- ----------------------
- .. ...............................................................................
- .. rubric:: Constructor
- .. ...............................................................................
- .. class:: Matrix3()
- A 3x3 matrix
- .. ...............................................................................
- .. rubric:: Attributes
- .. ...............................................................................
- .. attribute:: Matrix3.m
- Array with matrix values
- .. ...............................................................................
- .. rubric:: Methods
- .. ...............................................................................
- .. function:: Matrix3.transpose()
- Transposes this matrix in place
- :returns: This matrix
- :rtype: :class:`Matrix3`
- .. function:: Matrix3.transposeIntoArray( r )
- Transposes this matrix into supplied array ``r``
- This matrix is unmodified
- :returns: This matrix
- :rtype: :class:`Matrix3`
|