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 (Expand)Author
2011-01-15remove/comment unused defines.Campbell Barton
2011-01-14misc python api improvementsCampbell Barton
2011-01-13bugfix [#25578] assigning to multi-dimensional arrays failsCampbell Barton
2011-01-13remove/comment unused varsCampbell Barton
2011-01-11py/mathutils fix for eternal loop with Matrix.Rotation().Campbell Barton
2011-01-11- bpy.data.lamps.new() now takes a type argument since lamp type also sets cl...Campbell Barton
2011-01-09rename BKE_assert() --> BLI_assert().Campbell Barton
2011-01-09use PySequence_Size() rather then PySequence_Length(), this is only kept in p...Campbell Barton
2011-01-09mathutils matrix initialization now matches other mathutils types.Campbell Barton
2011-01-09use PySequence_Fast for matrix slice assignment to speed up assignment.Campbell Barton
2011-01-09py matrix api Campbell Barton
2011-01-09quiet zombie python class warning. bug remains but its not useful to print ou...Campbell Barton
2011-01-09cleanup for mathutils multiplication functions, a little faster in some cases...Campbell Barton
2011-01-09Remove py mathutils Euler.unique() methodCampbell Barton
2011-01-07remove references to BKE_utildefines where its not needed.Campbell Barton
2011-01-07split BKE_utildefines.h, now it only has blender specific defines like GS() M...Campbell Barton
2011-01-07incorrectly documented return typeCampbell Barton
2011-01-07py/rna api speedup for collection slicing in all cases, rather then having an...Campbell Barton
2011-01-06py/rna optimizations, will help for faster exporting.Campbell Barton
2011-01-05fix for py/rna mesh.materials[:] where empty materials exist, would raise a r...Campbell Barton
2011-01-05edits for BPY_extern.h functions, no functional changesCampbell Barton
2011-01-03fix for crash when some classes didnt register properly (this included loadin...Campbell Barton
2011-01-03fix for own error with mathutils.geometry argument parsing.Campbell Barton
2011-01-02- correct typos in comments.Campbell Barton
2011-01-02python api: rna array slices now return tuples rather then lists (fits with r...Campbell Barton
2011-01-02geometry moduleCampbell Barton
2010-12-31update python api with changes from Joshua's commit r33917. translate reports...Campbell Barton
2010-12-31CMake: use blender_include_dirs("${OPENGL_INCLUDE_DIR}") rather then blender_...Campbell Barton
2010-12-28Drivers Code Cleanups and UI Tweaks:Joshua Leung
2010-12-24return typle for mathutils slice's.Campbell Barton
2010-12-23fix for PyC_LineSpit() finding the current line of the frame's code object.Campbell Barton
2010-12-23rename blenderlib to blender_add_libCampbell Barton
2010-12-23remove reload() from builtins since python3 no longer uses this.Campbell Barton
2010-12-18fix [#25262] Keyboard shortcut presets can't be made because of wrong folderCampbell Barton
2010-12-15BKE_assert(), only prints the error unless cmake define WITH_ASSERT_ABORT is ...Campbell Barton
2010-12-15access bpy.app.debug_value, G.rt internallyCampbell Barton
2010-12-13Expose access to PROP_ENUM_FLAG from bpy.props.EnumProperty(), this is expose...Campbell Barton
2010-12-13exceptions in registering properties were not properly handled, allowing a si...Campbell Barton
2010-12-12New math util funcitons:Sergey Sharybin
2010-12-10patch [#25027] formatting mathutils.geometry module docs for sphinxCampbell Barton
2010-12-10Change the BLF_aspect function to handle 3d text.Diego Borghetti
2010-12-09renaming blf_api.h to blf_py_api.hDalai Felinto
2010-12-09- internal py/rna ifdef's USE_MATHUTILS was mixed up,Campbell Barton
2010-12-08use lowercase for cmake builtin names and macros, remove contents in else() a...Campbell Barton
2010-12-08fix for own change r33524, at the moment the context always has to be valid, ...Campbell Barton
2010-12-07minor internal python api change - pass the context rather then getting from ...Campbell Barton
2010-12-07pass along the context to extension functions, this was already being done in...Campbell Barton
2010-12-07mathutils quaternion axis/angle access was broken for non unit lenth quats, w...Campbell Barton
2010-12-06include getset's for generating module docs.Campbell Barton
2010-12-06- converted path cleaning on file load to use bPath Iterator functions - imag...Campbell Barton