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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-12-30 22:24:08 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-12-30 22:24:08 +0400
commit2e9cb31c02378fd5b9b3f26f6f26501d1aa999a2 (patch)
tree0721978f5d0649841e4c817edf16791e8e2fe8da /source/blender/bmesh/SConscript
parent1b4b5f98cb2f568c55d00ca546878b1a6959dad9 (diff)
Add BMLog for efficiently storing changes to vertices and faces
The BMLog is an interface for storing undo/redo steps as a BMesh is modified. It only stores changes to the BMesh, not full copies. Currently it supports the following types of changes: - Adding and removing vertices - Adding and removing faces - Moving vertices - Setting vertex paint-mask values - Setting vertex hflags
Diffstat (limited to 'source/blender/bmesh/SConscript')
-rw-r--r--source/blender/bmesh/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/bmesh/SConscript b/source/blender/bmesh/SConscript
index 722b7518630..a8ca514297e 100644
--- a/source/blender/bmesh/SConscript
+++ b/source/blender/bmesh/SConscript
@@ -41,7 +41,9 @@ incs = [
'../blenkernel',
'#/intern/guardedalloc',
'#/extern/bullet2/src',
- '#/intern/opennl/extern', ]
+ '#/extern/rangetree',
+ '#/intern/opennl/extern'
+ ]
defs = []