Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2007-12-17Reverting to 2_2x BPYMartin Poirier
I was careful in selectively rolling back revisions, but if you've committed changes unrelated to BPY mixed with BPY changes, I might have reverted those too, so please double check.
2007-05-26More memory leaks fixed - in IDProp, Bone.head, tail, matrix, ob.DupObjects ↵Campbell Barton
(my fault) and in Effect module as well as a few others. Also stopped using Py_BuildValue for strings, ints and floats.
2006-08-21===Python API===Ken Hughes
Bugfix: unary minus on a point object should not modify the original point data but return a new point.
2005-12-05-- Bugfix 3453: coercion operations were doing an extra incref on coercedKen Hughes
objects. Also found extra increfs on some newly-created quat and matrix objects, from calls to Matrix_Identity() and Quaternion_Identity().
2005-09-27Refcount fixesJoseph Gilbert
* fixes posible reference count issues with mathutils * mathutils classes should no longer memory leak
2005-09-12bugfix: [ #3009 ] possible memory leak in MathutilsStephen Swaney
fixed by patch [ #3013 ] patch for memleak in vector Submitted By: Ken Hughes (khughes)
2005-07-26_update to .NET projectfiles_Joseph Gilbert
- removed wave from python - added include path for decimation header - added additional line to eof in point
2005-07-23_new point class and update_Joseph Gilbert
- adds a new point class * point/ vector math (p + v = p, p - p = v, etc.) * points can be transformed by matrices/quats * wraps 'place vector' type vectors that have no magnitude - wrapped toXXX() methods work correctly * toXXX() will NOT wrap data (this is due to the fact that wrapped data cannot be converted) * added a 'wrapped' attribute to mathutils classes to determine wether the object is accessing python or blender data - added the ability to negate vectors/points with "-vec" * deprecated vector.negate() - added the ability to shorhand inverse matrices with "~mat" (tilde) - conversion between vector/point with toXXX() methods