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-18Used GET_INT_FROM_POINTER to get rid of many warnings that only occurred ↵Campbell Barton
with 64bit os's Also use Py_ssize_t which we might need to define for older python's
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-10-27==Python API==Campbell Barton
layerMask access for pose bones, even though this is a Bone property, its much more convenient to add access from the poseBone, it also matches how the user interface works.
2007-10-21changed default nan_definitions.mk to use python 2.5 for linux (ai64 default ↵Campbell Barton
was py 2.2 which probably wont even compile anymore) pose.c - left a print here export obj would ask about file overwriting twice.
2007-10-21own error, was returning the wrong python error typeCampbell Barton
2007-10-21warning cleanup:Stephen Swaney
unused var return makes integer from pointer without cast
2007-10-20made setting the pose_bone.poseMatrix possible, this does not set the matrix ↵Campbell Barton
directly, only the pose bones loc/size/rot, when dealing with an armature without constraints this works as expected. it uses the same code as Copy Visual Loc/Size/Rot.
2007-09-18A user submitted a BVH file that took a long time to import (I didnt end up ↵Campbell Barton
finishing since it was so slow) this is mainly because adding pose keyframes recalculates every handle so importing became increasingly slow. added a 'fast' argument to insertkey that python api's insertPoseKey can make use of since it alredy accepts a 'fast' option. The ~4450 frame, 31 bone BVH imports in ~108sec now Seperated editmode switch statement in space.c's event handling, if editmode is disabled, or the images is a render or composite, UV editing operations are ignored. In previous releases it has given an annoying warning if selecting or scaling is attempted when out of UV/Face mode.
2007-09-17Patch/Bugfix #7334 by 'gsr b3d:Joshua Leung
Some more compiler warning fixes. Some of these seem to be specific to GCC 4.1
2007-09-05printing a pose's bone dict was limited to 4096 characters otherwise it ↵Campbell Barton
would crash. malloc the string instead.
2007-07-12From stableCampbell Barton
Revision: 11237 http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11237 Author: campbellbarton Date: 2007-07-12 13:05:31 +0200 (Thu, 12 Jul 2007) Log Message: ----------- PyObject_IsTrue was missing a check for an error return value in many cases.
2007-05-21=== Bugfix ===Martin Poirier
Coverity bugfix (missing NULL check) and ref counting errors. (on module constants, so not really leaking, just not good.)
2007-03-11moved python functions that deal with blender libdata into gen_library.c ↵Campbell Barton
from gen_utils and BPY_interface small cleanup, removed unused functions and explicetly cast pointers..
2007-03-08BPython APICampbell Barton
added a function - GenericLib_assignData for assigning blender data, to assign an ipo to a camera or world to a scene for instance. Using this function removed ~300 lines of code. also fixes user count error in some places that didnt check. also made it possible to clear the colorband by setting it to []
2007-03-03Pose.c - added option not to update IPO's when adding a keyframe to a bone.Campbell Barton
bvh_import.py - delaying IPO updates gives a significant speedup. - IPO's use linear interpolation now - Added an option to loop the animation. - fix for own bug, importing to empties never worked.
2007-03-02various warnings fixes - mostly casting and initialization issuesJoseph Gilbert
2007-02-22renamed posebone.ik to hasIK, removed unused code, made the function name of ↵Campbell Barton
Armatue's py object from Blender object consistant with others.
2007-02-21* added MTex uvlayer string attributeCampbell Barton
* added Pose attribute "ik" True/False depending on the pose bones IK. limitX/Y/Z bool's lockX/Y/ZRot bool's stiffX/Y/Z floats stretch (ikstretch) float
2006-12-30added pose_bone.displayObject for getting/setting custom bonesCampbell Barton
2006-12-27renameing datablocks was imposing a name limit on the python side.Campbell Barton
This isnt needed because the limit is alredy being set by rename_id() some other minor changed- use None returning maro
2006-10-06added comparison function to many python types so you can do == and =!Campbell Barton
2006-08-31added .sel to pose bones as well as read only .parent propertyCampbell Barton
2006-05-14*applying patchJoseph Gilbert
[ #4143 ] Methods for reading bone movement limits Submitted By: Aron Cristian (criller) Gives the ability to return/set the limitations on a posebone when that bone is part of an IK chain.
2006-05-07===Python API===Ken Hughes
New Constraint API. Constraints are accessible through a "constraints" attribute in poses and objects. Would be REALLY NICE for armature users to pound on this code.
2006-05-07Bugfixes for frame number boost:Peter Schlaile
- Found several places, where people explicitly casted the frame number to short. - Fixed the crash in BPY_interface by adding an empty line (to make it recompile everywhere, make clean doesn't help...) For the build system maintainers: Problem was: The change in makesdna changed the position of the scriptlink structure. BPY_interface.c somehow didn't get recompiled (not even after a make clean!!!) which triggered crashes on adding scriptlinks.
2006-04-16a little spring cleaning to remove some compiler warnings forStephen Swaney
implicit declarations, redundant redeclarations, missing initializers, nested externs and other cruft. Cleaned up includes and moved extern _Type decls from Types.h into Types.c since that is the only place where they are needed now. Did not touch Ipo.[ch] since work is on-going there.
2006-03-11Bugfix #3895: Call to PyString_FromString() wasn't being Py_DECREF()'ed,Ken Hughes
causing a memory leak.
2006-01-28Cleanup of blender/ module; Makefiles now compile this warning free.Ton Roosendaal
Mostly was unused variables, unused functions, missing prototypes and missing include files.
2006-01-16clean up some warnings in bpy codeStephen Swaney
2006-01-13* [ #3746 ] Calling getPose on a mesh object generates "RuntimeError: Pose - ↵Joseph Gilbert
Error: PyPose_FromPose: Internal Error Ocurred" - added returns where appropriate.
2006-01-13*head/tail additionJoseph Gilbert
- forgot to add the ability to get pose head/tail positions - no setters (yet) as they are calculated
2006-01-12remove Constraint.h since it doesn't exist.Kent Mein
Provided by Letterrip. Kent
2006-01-11Probably need these....Joseph Gilbert