[Bf-blender-cvs] CVS commit: blender/source/blender/include BIF_editkey.h blender/source/blender/python/api2_2x Bone.c Image.c Makefile.am Material.c Material.h NMesh.c NMesh.h blender/source/blender/python/api2_2x/doc Armature.py Image.py NMesh.py blender/source/blender/src editipo.c editkey.c

Willian Padovani Germano wgermano at ig.com.br
Wed Jul 30 23:15:43 CEST 2003


ianwill (Willian Padovani Germano) 2003/07/30 23:15:43 CEST

  Modified files:
    blender/source/blender/include BIF_editkey.h 
    blender/source/blender/python/api2_2x Bone.c Image.c 
                                          Makefile.am Material.c 
                                          Material.h NMesh.c 
                                          NMesh.h 
    blender/source/blender/python/api2_2x/doc Armature.py Image.py 
                                              NMesh.py 
    blender/source/blender/src editipo.c editkey.c 
  
  Log:
  * got rid of a warning in editipo.c:
     changed "get_ipo(key, ..." to "get_ipo((ID *)key, ..." in line 107.
  * changed insert_meshkey(Mesh *me) to insert_meshkey(Mesh *me, short offline):
     To call this function from a script, so that it doesn't pop the
     "relative / absolute" dialog window when the "offline" arg is non-zero.
  
  Exppython:
  
  * NMesh module:
     - Added method NMesh.addMaterial(mat) to the NMesh module:
     alternative safer (aka slower) way to add materials.
     - Added optional arg to NMesh_update():
     if given and equal to 1, the mesh normals are recalculated.
     - Fixed NMesh.getVertexInfluences: it was segfaulting when a NULL bone was
     linked to the vertex.  Thanks to Jiba on the bf-python mailing list for
     bug report and sample .blend file.  Also made this method give an IndexError
     when the vertex index is out of range.
  * Material module:
     Added specR, specG, specB vars for compatibility with the 2.25 API.
     Pointed by Manuel Bastioni.
  * Image module:
      Exposed image width, height and depth parameters.
      From a suggestion by jms.
  * BPython Ref Doc:
    - Small updates to reflect the above additions.
    - Added info for the Bone type in the Armature doc.
  
  Revision  Changes    Path
  1.6       +2 -2      blender/source/blender/include/BIF_editkey.h
  1.7       +1 -1      blender/source/blender/python/api2_2x/Bone.c
  1.14      +54 -3     blender/source/blender/python/api2_2x/Image.c
  1.23      +2 -1      blender/source/blender/python/api2_2x/Makefile.am
  1.13      +28 -0     blender/source/blender/python/api2_2x/Material.c
  1.6       +1 -0      blender/source/blender/python/api2_2x/Material.h
  1.17      +82 -21    blender/source/blender/python/api2_2x/NMesh.c
  1.11      +12 -5     blender/source/blender/python/api2_2x/NMesh.h
  1.2       +147 -0    blender/source/blender/python/api2_2x/doc/Armature.py
  1.2       +15 -3     blender/source/blender/python/api2_2x/doc/Image.py
  1.6       +25 -4     blender/source/blender/python/api2_2x/doc/NMesh.py
  1.14      +2 -2      blender/source/blender/src/editipo.c
  1.7       +10 -4     blender/source/blender/src/editkey.c



More information about the Bf-blender-cvs mailing list