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-07-15 23:38:48 +0400
committerMartin Poirier <theeth@yahoo.com>2008-07-15 23:38:48 +0400
commit08039ef38fa6d39f756860032659cc3678137ced (patch)
treeea8d68956b07c52a6547f81dd1c9a6d592f1f920 /source/blender/blenlib/intern/graph.c
parentac6641664e79fee9b8e503c6db278f5739ddb317 (diff)
Optimization method selectable at runtime
Start multi resolution match from node, not arc (solve problem with Rinky) various uglyness being cleaned up or factored out
Diffstat (limited to 'source/blender/blenlib/intern/graph.c')
-rw-r--r--source/blender/blenlib/intern/graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/graph.c b/source/blender/blenlib/intern/graph.c
index a3089369c22..fce9d0b6d95 100644
--- a/source/blender/blenlib/intern/graph.c
+++ b/source/blender/blenlib/intern/graph.c
@@ -354,7 +354,7 @@ int BLI_subtreeShape(BNode *node, BArc *rootArc, int include_root)
}
}
- return 10 * depth + 1;
+ return SHAPE_RADIX * depth + 1;
}
}