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-30 23:54:34 +0300
committerMartin Poirier <theeth@yahoo.com>2007-11-30 23:54:34 +0300
commit84eb745b009170f934a9ac648a30da00bb9f21ab (patch)
tree1697c3098f2749e973c8c5a0e9cca9c0fd4c7e33 /source/blender/src/reeb.c
parent653f064e71e23037fd3ae8d20890de3f4cc7adb9 (diff)
Adding missing declaration in header and removing some debug prints.
Diffstat (limited to 'source/blender/src/reeb.c')
-rw-r--r--source/blender/src/reeb.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/src/reeb.c b/source/blender/src/reeb.c
index cac79f0b0a6..3d704e546cb 100644
--- a/source/blender/src/reeb.c
+++ b/source/blender/src/reeb.c
@@ -844,7 +844,6 @@ int subtreeDepth(ReebNode *node, ReebArc *rootArc)
if (arc != rootArc)
{
ReebNode *newNode = OTHER_NODE(arc, node);
- printf("recurse\n");
depth = MAX2(depth, subtreeDepth(newNode, arc));
}
}
@@ -982,9 +981,6 @@ void removeNormalNodes(ReebGraph *rg)
{
ReebArc *nextArc = findConnectedArc(rg, arc, arc->v1);
- if (nextArc == NULL)
- printf("uhm1\n");
-
// Merge arc only if needed
if (arc->v1 == nextArc->v2)
{
@@ -1002,9 +998,6 @@ void removeNormalNodes(ReebGraph *rg)
{
ReebArc *nextArc = findConnectedArc(rg, arc, arc->v2);
- if (nextArc == NULL)
- printf("uhm %p\n", arc->v2);
-
// Merge arc only if needed
if (arc->v2 == nextArc->v1)
{
@@ -1043,15 +1036,6 @@ ReebArc *nextArcMappedToEdge(ReebArc *arc, ReebEdge *e)
result = nextEdge->arc;
}
-#if 0
- if (result == arc)
- {
- printf("WTF");
- getchar();
- exit(1);
- }
-#endif
-
return result;
}