blender/source
Campbell Barton 2a80368005 mathtils, convenience attributes added 'row' and 'col', this makes the row/col swap a lot easier to deal with, since
now you can still use column access

previously...
  mat[2] = 1, 2, 3

needed to be converted into...
  mat[0][2] = 1
  mat[1][2] = 2
  mat[2][2] = 3

but with column access you can do...
  mat.col[2] = 1, 2, 3


Having 'row' attribute is a bit redundant since direct indexing on a matrix uses row but included for completeness.
2011-12-24 07:03:19 +00:00
..
blender mathtils, convenience attributes added 'row' and 'col', this makes the row/col swap a lot easier to deal with, since 2011-12-24 07:03:19 +00:00
blenderplayer remove duplicate extern_colamd from blenderplayer cmake 2011-11-28 08:38:08 +00:00
creator Fix linux linking issue with md5 commit. 2011-12-21 14:35:48 +00:00
darwin replace former applescript with an editable one 2011-10-19 19:15:35 +00:00
gameengine Cleaning up the GPU_extensions_init/exit() code a bit to keep the Blenderplayer from crashing on exit and restart. 2011-12-23 07:10:01 +00:00
icons set svn end of lines to native 2011-05-09 08:15:38 +00:00
tests patch [#29534] Change Matrix Representation and Access in Python to Conform with Standard Notation 2011-12-22 01:05:03 +00:00
CMakeLists.txt remove $Id: tags after discussion on the mailign list: http://markmail.org/message/fp7ozcywxum3ar7n 2011-10-23 17:52:20 +00:00
SConscript Code cleanup: remove source/kernel module, this wasn't really the kernel of 2011-05-06 20:18:42 +00:00