Blender Git Commit Log
Git Commits -> Revision b6b6168
Revision b6b6168 by Martin Poirier (master) December 29, 2008, 01:41 (GMT) |
2.5 Transform: First working port of the transform code: - Object mode only (other conversions need to be ported) - Contraints (global and local only) working - Snap (no edit mode, obviously) working - Numinput working - Gears (Ctrl and Shift) working - Only grap, rotate, scale, shear, warp and to sphere have been added as hotkey, but the rest should work too once accessible - No manipulator - No drawn feedback other than moving stuff and header print (no constraint line, snap circle, ...) - No NDOF support I've only tested Scons support, though Makefil *should* work, I *think*. Misc: -QuatIsNull function in arith -Exporting project_* and view[line|ray] functions from view3d |
Commit Details:
Full Hash: b6b61681efd322bd800bcaba55099cdf147547b2
SVN Revision: 18136
Parent Commit: 97a8210
Lines Changed: +16523, -12
11 Added Paths:
/source/blender/editors/include/BIF_transform.h (+135, -0) (View)
/source/blender/editors/transform/transform.c (+4827, -0) (View)
/source/blender/editors/transform/transform.h (+569, -0) (View)
/source/blender/editors/transform/transform_constraints.c (+1070, -0) (View)
/source/blender/editors/transform/transform_conversions.c (+4461, -0) (View)
/source/blender/editors/transform/transform_generics.c (+1235, -0) (View)
/source/blender/editors/transform/transform_manipulator.c (+1683, -0) (View)
/source/blender/editors/transform/transform_ndofinput.c (+155, -0) (View)
/source/blender/editors/transform/transform_numinput.c (+258, -0) (View)
/source/blender/editors/transform/transform_orientations.c (+781, -0) (View)
/source/blender/editors/transform/transform_snap.c (+1306, -0) (View)
/source/blender/editors/transform/transform.c (+4827, -0) (View)
/source/blender/editors/transform/transform.h (+569, -0) (View)
/source/blender/editors/transform/transform_constraints.c (+1070, -0) (View)
/source/blender/editors/transform/transform_conversions.c (+4461, -0) (View)
/source/blender/editors/transform/transform_generics.c (+1235, -0) (View)
/source/blender/editors/transform/transform_manipulator.c (+1683, -0) (View)
/source/blender/editors/transform/transform_ndofinput.c (+155, -0) (View)
/source/blender/editors/transform/transform_numinput.c (+258, -0) (View)
/source/blender/editors/transform/transform_orientations.c (+781, -0) (View)
/source/blender/editors/transform/transform_snap.c (+1306, -0) (View)
7 Modified Paths:
/source/blender/blenlib/BLI_arithb.h (+1, -0) (Diff)
/source/blender/blenlib/intern/arithb.c (+4, -0) (Diff)
/source/blender/editors/include/ED_view3d.h (+20, -0) (Diff)
/source/blender/editors/space_view3d/view3d_intern.h (+0, -11) (Diff)
/source/blender/editors/space_view3d/view3d_ops.c (+6, -0) (Diff)
/source/blender/editors/transform/Makefile (+1, -1) (Diff)
/source/blender/editors/transform/SConscript (+11, -0) (Diff)
/source/blender/blenlib/intern/arithb.c (+4, -0) (Diff)
/source/blender/editors/include/ED_view3d.h (+20, -0) (Diff)
/source/blender/editors/space_view3d/view3d_intern.h (+0, -11) (Diff)
/source/blender/editors/space_view3d/view3d_ops.c (+6, -0) (Diff)
/source/blender/editors/transform/Makefile (+1, -1) (Diff)
/source/blender/editors/transform/SConscript (+11, -0) (Diff)