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-06-26 22:15:45 +0400
committerMartin Poirier <theeth@yahoo.com>2008-06-26 22:15:45 +0400
commit829b2668c50dec713fdb31ee2e3fc8f7658a68d3 (patch)
tree4f74e6ee99aa22e669f2c4e0c935fe76b66b1d1b /source/blender/blenlib/BLI_graph.h
parentc0daf627333b21c72ec6d120805a74a8b274b429 (diff)
Starting to debug the elusive graph spliting bug
Better check for RigGraph head Fix harmonic weighting for quads
Diffstat (limited to 'source/blender/blenlib/BLI_graph.h')
-rw-r--r--source/blender/blenlib/BLI_graph.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h
index 0763c7edff0..b1e4a9fec75 100644
--- a/source/blender/blenlib/BLI_graph.h
+++ b/source/blender/blenlib/BLI_graph.h
@@ -72,6 +72,9 @@ void BLI_flagArcs(BGraph *graph, int flag);
int BLI_hasAdjacencyList(BGraph *rg);
void BLI_buildAdjacencyList(BGraph *rg);
+void BLI_freeAdjacencyList(BGraph *rg);
+
+int BLI_FlagSubgraphs(BGraph *graph);
void BLI_replaceNode(BGraph *graph, BNode *node_src, BNode *node_replaced);
void BLI_removeDoubleNodes(BGraph *graph, float limit);