Matrix3.rst 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Matrix3 - A 3x3 matrix
  2. ----------------------
  3. .. ...............................................................................
  4. .. rubric:: Constructor
  5. .. ...............................................................................
  6. .. class:: Matrix3()
  7. A 3x3 matrix
  8. .. ...............................................................................
  9. .. rubric:: Attributes
  10. .. ...............................................................................
  11. .. attribute:: Matrix3.m
  12. Array with matrix values
  13. .. ...............................................................................
  14. .. rubric:: Methods
  15. .. ...............................................................................
  16. .. function:: Matrix3.transpose()
  17. Transposes this matrix in place
  18. :returns: This matrix
  19. :rtype: :class:`Matrix3`
  20. .. function:: Matrix3.transposeIntoArray( r )
  21. Transposes this matrix into supplied array ``r``
  22. This matrix is unmodified
  23. :returns: This matrix
  24. :rtype: :class:`Matrix3`