Blender Git Loki
Git Commits -> Revision b056b9e
Revision b056b9e by Campbell Barton June 16, 2007, 04:20 (GMT) |
bugfixs for the Python API (from trunk) scene.timeline - no crash nmesh.getSelectedFaces - use MFace sel flag mesh.pointInside - didnt work modifier - mirror modifier works key - works again other's are just indref/decref issues, Text3d adds a constant but this is safe. |
Commit Details:
Full Hash: b056b9eac08905162eead0e06878605e61df1e6e
SVN Revision: 10942
Parent Commit: c4b03eb
Lines Changed: +440, -353
32 Modified Paths:
/source/blender/python/api2_2x/Blender.c (+1, -8) (Diff)
/source/blender/python/api2_2x/Camera.c (+3, -2) (Diff)
/source/blender/python/api2_2x/constant.c (+19, -11) (Diff)
/source/blender/python/api2_2x/Curve.c (+5, -4) (Diff)
/source/blender/python/api2_2x/doc/Image.py (+7, -5) (Diff)
/source/blender/python/api2_2x/doc/MeshPrimitives.py (+13, -13) (Diff)
/source/blender/python/api2_2x/doc/Scene.py (+2, -0) (Diff)
/source/blender/python/api2_2x/Draw.c (+7, -1) (Diff)
/source/blender/python/api2_2x/Effect.c (+19, -9) (Diff)
/source/blender/python/api2_2x/Font.c (+5, -4) (Diff)
/source/blender/python/api2_2x/gen_library.c (+7, -4) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+15, -12) (Diff)
/source/blender/python/api2_2x/Group.c (+3, -2) (Diff)
/source/blender/python/api2_2x/Image.c (+27, -12) (Diff)
/source/blender/python/api2_2x/Ipo.c (+30, -24) (Diff)
/source/blender/python/api2_2x/Key.c (+50, -59) (Diff)
/source/blender/python/api2_2x/Key.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Lamp.c (+6, -4) (Diff)
/source/blender/python/api2_2x/Lattice.c (+7, -6) (Diff)
/source/blender/python/api2_2x/Material.c (+4, -3) (Diff)
/source/blender/python/api2_2x/Mathutils.c (+2, -2) (Diff)
/source/blender/python/api2_2x/Mesh.c (+26, -44) (Diff)
/source/blender/python/api2_2x/Modifier.c (+33, -16) (Diff)
/source/blender/python/api2_2x/NMesh.c (+74, -65) (Diff)
/source/blender/python/api2_2x/Object.c (+13, -9) (Diff)
/source/blender/python/api2_2x/Scene.c (+18, -11) (Diff)
/source/blender/python/api2_2x/sceneTimeLine.c (+20, -8) (Diff)
/source/blender/python/api2_2x/Sound.c (+3, -2) (Diff)
/source/blender/python/api2_2x/Text.c (+7, -5) (Diff)
/source/blender/python/api2_2x/Text3d.c (+6, -1) (Diff)
/source/blender/python/api2_2x/Texture.c (+3, -2) (Diff)
/source/blender/python/api2_2x/windowTheme.c (+4, -4) (Diff)
/source/blender/python/api2_2x/Camera.c (+3, -2) (Diff)
/source/blender/python/api2_2x/constant.c (+19, -11) (Diff)
/source/blender/python/api2_2x/Curve.c (+5, -4) (Diff)
/source/blender/python/api2_2x/doc/Image.py (+7, -5) (Diff)
/source/blender/python/api2_2x/doc/MeshPrimitives.py (+13, -13) (Diff)
/source/blender/python/api2_2x/doc/Scene.py (+2, -0) (Diff)
/source/blender/python/api2_2x/Draw.c (+7, -1) (Diff)
/source/blender/python/api2_2x/Effect.c (+19, -9) (Diff)
/source/blender/python/api2_2x/Font.c (+5, -4) (Diff)
/source/blender/python/api2_2x/gen_library.c (+7, -4) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+15, -12) (Diff)
/source/blender/python/api2_2x/Group.c (+3, -2) (Diff)
/source/blender/python/api2_2x/Image.c (+27, -12) (Diff)
/source/blender/python/api2_2x/Ipo.c (+30, -24) (Diff)
/source/blender/python/api2_2x/Key.c (+50, -59) (Diff)
/source/blender/python/api2_2x/Key.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Lamp.c (+6, -4) (Diff)
/source/blender/python/api2_2x/Lattice.c (+7, -6) (Diff)
/source/blender/python/api2_2x/Material.c (+4, -3) (Diff)
/source/blender/python/api2_2x/Mathutils.c (+2, -2) (Diff)
/source/blender/python/api2_2x/Mesh.c (+26, -44) (Diff)
/source/blender/python/api2_2x/Modifier.c (+33, -16) (Diff)
/source/blender/python/api2_2x/NMesh.c (+74, -65) (Diff)
/source/blender/python/api2_2x/Object.c (+13, -9) (Diff)
/source/blender/python/api2_2x/Scene.c (+18, -11) (Diff)
/source/blender/python/api2_2x/sceneTimeLine.c (+20, -8) (Diff)
/source/blender/python/api2_2x/Sound.c (+3, -2) (Diff)
/source/blender/python/api2_2x/Text.c (+7, -5) (Diff)
/source/blender/python/api2_2x/Text3d.c (+6, -1) (Diff)
/source/blender/python/api2_2x/Texture.c (+3, -2) (Diff)
/source/blender/python/api2_2x/windowTheme.c (+4, -4) (Diff)