[Bf-blender-cvs] CVS commit: blender/source/blender/blenkernel BKE_depsgraph.h blender/source/blender/blenkernel/intern action.c armature.c depsgraph.c blender/source/blender/blenloader/intern readfile.c blender/source/blender/include BIF_poseobject.h blender/source/blender/makesdna DNA_action_types.h ...

Ton Roosendaal ton at blender.org
Sun Oct 23 12:08:19 CEST 2005


ton (Ton Roosendaal) 2005/10/23 12:08:19 CEST

  Modified files:
    blender/source/blender/blenkernel BKE_depsgraph.h 
    blender/source/blender/blenkernel/intern action.c armature.c 
                                             depsgraph.c 
    blender/source/blender/blenloader/intern readfile.c 
    blender/source/blender/include BIF_poseobject.h 
    blender/source/blender/makesdna DNA_action_types.h 
    blender/source/blender/src drawarmature.c header_view3d.c 
                               poseobject.c 
  
  Log:
  New: Option to show the paths of Bones over time.
  
  In PoseMode, press Wkey or use the Pose pulldown menu. It calculates the
  positions of all selected Bone end points, over the time as indicated with
  the Scene start/end frame. This then is drawn as a path, with little black
  dots on every frame, and a white dot on every 10 frames.
  
  Paths are not saved in files, and not calculated automatic yet on changes.
  
  To make this relative fast, but also reliable, I had to add a new method
  in the Dependency graph system, to find exactly (and only) these parents
  of an Object that influence its position. This is needed because the path
  should show the actual global coordinates of the entire animation system.
  
  Revision  Changes    Path
  1.5       +10 -1     blender/source/blender/blenkernel/BKE_depsgraph.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/BKE_depsgraph.h.diff?r1=1.4&r2=1.5&cvsroot=bf-blender>
  1.38      +7 -4      blender/source/blender/blenkernel/intern/action.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/intern/action.c.diff?r1=1.37&r2=1.38&cvsroot=bf-blender>
  1.55      +3 -1      blender/source/blender/blenkernel/intern/armature.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/intern/armature.c.diff?r1=1.54&r2=1.55&cvsroot=bf-blender>
  1.29      +64 -1     blender/source/blender/blenkernel/intern/depsgraph.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/intern/depsgraph.c.diff?r1=1.28&r2=1.29&cvsroot=bf-blender>
  1.199     +9 -8      blender/source/blender/blenloader/intern/readfile.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenloader/intern/readfile.c.diff?r1=1.198&r2=1.199&cvsroot=bf-blender>
  1.14      +4 -1      blender/source/blender/include/BIF_poseobject.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/include/BIF_poseobject.h.diff?r1=1.13&r2=1.14&cvsroot=bf-blender>
  1.21      +4 -2      blender/source/blender/makesdna/DNA_action_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/makesdna/DNA_action_types.h.diff?r1=1.20&r2=1.21&cvsroot=bf-blender>
  1.25      +44 -1     blender/source/blender/src/drawarmature.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/drawarmature.c.diff?r1=1.24&r2=1.25&cvsroot=bf-blender>
  1.140     +14 -5     blender/source/blender/src/header_view3d.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/header_view3d.c.diff?r1=1.139&r2=1.140&cvsroot=bf-blender>
  1.31      +84 -2     blender/source/blender/src/poseobject.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/poseobject.c.diff?r1=1.30&r2=1.31&cvsroot=bf-blender>



More information about the Bf-blender-cvs mailing list