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>2007-11-29 22:57:40 +0300
committerMartin Poirier <theeth@yahoo.com>2007-11-29 22:57:40 +0300
commit653f064e71e23037fd3ae8d20890de3f4cc7adb9 (patch)
tree3e868c0d2b4251e8ae9f85422d09fb2ddf62c9b5 /source/blender/include
parent1cb7325c2b84a8574697232bb0f765fe2166e4b3 (diff)
Moved both filtering operations (external and internal) into a loop, since both can create new cases that the other would filter out.
Finish radial symmetry restoration.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/reeb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/include/reeb.h b/source/blender/include/reeb.h
index 2fc0220b830..c0d2340bdf8 100644
--- a/source/blender/include/reeb.h
+++ b/source/blender/include/reeb.h
@@ -101,8 +101,8 @@ struct EmbedBucket * nextBucket(struct ReebArcIterator *iter);
/* Filtering */
void filterNullReebGraph(ReebGraph *rg);
-void filterExternalReebGraph(ReebGraph *rg, float threshold);
-void filterInternalReebGraph(ReebGraph *rg, float threshold);
+int filterExternalReebGraph(ReebGraph *rg, float threshold);
+int filterInternalReebGraph(ReebGraph *rg, float threshold);
/* Post-Build processing */
void repositionNodes(ReebGraph *rg);