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-07-22Python APIKen Hughes
---------- Particle patch from Cédric Paille: bugfixes and child-particles export improvements for .getLoc(), part.getRot() part.getSize(), part.getAge() methods. Also fix a bug with part.randemission getter (was using PART_BOIDS_2D instead of PART_TRAND), plus typos and duplications in API documentation.
2008-06-06bugfix, memory leaks when getting particles and particle system ↵Campbell Barton
loc/size/rot/life (Just remember PyList_Append adds a reference! :) )
2008-05-26bugfix for crasher from Cedric Paille via bf-committers.Stephen Swaney
2008-05-11Fix compiler warnings in particle.c and editface.c.Joshua Leung
* unitialised/unused vars
2008-05-11Initial commit for BPy Particle patch #8557 from Cedric PailleStephen Swaney
Thanks, Cedric! *** WARNING **** This is a Work In Progress *** Warning ****
2008-04-27remove old particle system.Campbell Barton
also removed quat, dquat, and sumohandle from the Object struct since they aren't used anywhere.
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-03-16type initialization updates, and refcount fix for lamp, reverted some ↵Campbell Barton
changes to NMesh
2005-11-29* warnings fixesJoseph Gilbert
2005-11-04- JMS's patch which adds GetParticlesLoc() method. I've modified the codeKen Hughes
so that it resides in the Effects module instead, with the intent of soon merging Effect.c and Particle.c into a single file (and somedat removing references to the Effects.Particle submodule)
2005-07-18Header file clean up and warning fixesJoseph Gilbert
- Mostly this cleans up the #includes and header files in the python project. - Warning fixes are mostly casting issues and misc fixes. General warning clean up. - #include Python.h MUST come as the first include to avoid the POSIX redefine warning in the unix makefiles - fno-strict-aliasing flag added to makefile to fix a unavoidable type punning warning in types.c
2005-06-17Some of the setattr functions created a tuple to pass to the set* functions ↵Martin Poirier
and didn't decref'ed it properly, "leaking" memory. Commit approved by stivs.
2005-03-09big warning hunt commitJean-Luc Peurière
lot of casts, added prototypes, missing includes and some true errors
2004-09-26Another round in the Great BPy Cleanup:Stephen Swaney
Run everything thru indent to cleanup spaces vs tabs. Clean up some of the comments by hand. BGL.c was not touched due to all that macro wackyness. There are no functional changes to the code. Pre-indent versions of source are tagged with tag bpy-cleanup-20040925 , just in case.
2004-09-18One small part of the Great Bpy Code Cleanup.Stephen Swaney
Add cvs $Id tag to files
2004-06-07Replace deprecated methods from old api:Stephen Swaney
PythonReturnErrorObject PythonIncRef Fix some compiler warnings about missing initializers in method tables.
2003-07-04Following Willian's proposal,deleted the print function, which caused crashes.Jacques Guignot
The objects are now printed with the repr function.
2003-06-28- More renaming all around to follow our conventionsWillian Padovani Germano
- Implemented partially Blender.Sys - Worked on issues related to sys, path - Took away most "debug" printfs
2003-06-27end of cleanup ; naming conventions, balance between c and h filesJacques Guignot
2003-06-22nex moduleJacques Guignot