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
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2008-12-29 04:41:28 +0300
committerMartin Poirier <theeth@yahoo.com>2008-12-29 04:41:28 +0300
commitb6b61681efd322bd800bcaba55099cdf147547b2 (patch)
treebf745c0c58ee608ac8c3c53aa97a14932fc9135f /source/blender/editors/transform/SConscript
parent97a82102d4d24a94d8360a6f5f054e44f6fb1993 (diff)
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
Diffstat (limited to 'source/blender/editors/transform/SConscript')
-rw-r--r--source/blender/editors/transform/SConscript11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/editors/transform/SConscript b/source/blender/editors/transform/SConscript
index e69de29bb2d..2c44204afa9 100644
--- a/source/blender/editors/transform/SConscript
+++ b/source/blender/editors/transform/SConscript
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
+incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont'
+incs += ' ../../gpu ../../makesrna'
+
+env.BlenderLib ( 'bf_editors_transform', sources, Split(incs), [], libtype=['core'], priority=[40] ) \ No newline at end of file