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
2011-02-24found moving verts in pythons 2.5 api is approx 10x slower because the ↵Campbell Barton
multi-dimensional array assignment reads the array 3 times (typecheck, length-check & for-real). the length check was running sequence checks on every number which would fail, small speedup by avoiding this. should eventually get this working faster by reading once into an allocated array.
2011-02-24remove 2 unnecessary checks for array type before assignment. Campbell Barton
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-14python api renaming and added headers for some files which didnt have one, ↵Campbell Barton
no functionality change.
2011-01-14misc python api improvementsCampbell Barton
- rna array parsing was using PySequence_Size() in a loop, this can be slow to run so only call once. - assigning a single value to a multi-dimensional array was missing type check. - improve exception messages for rna array type errors. - simplify vector slice assignment by using mathutils_array_parse(...)
2011-01-13bugfix [#25578] assigning to multi-dimensional arrays failsCampbell Barton
2011-01-13remove/comment unused varsCampbell Barton
also removed unnecessary NULL checks (where the pointer was used later without checking).
2011-01-09use PySequence_Size() rather then PySequence_Length(), this is only kept in ↵Campbell Barton
python for backwards compatibility.
2011-01-02- correct typos in comments.Campbell Barton
- move boxpack struct out of the public header.
2010-11-17- move cmake file for python.Campbell Barton
- move bpy_array.c to bpy_rna_array.c - minor syntax changes