Freestyle: disabled debug code in ViewMapBuilder::ComputeIntersections().

This commit is contained in:
Tamito Kajiyama 2014-08-15 16:38:41 +09:00
parent ee263c2566
commit b3e7a51ebd

@ -2112,14 +2112,14 @@ void ViewMapBuilder::ComputeIntersections(ViewMap *ioViewMap, intersection_algo
default: default:
break; break;
} }
ViewMap::viewvertices_container& vvertices = ioViewMap->ViewVertices(); #if 0
for (ViewMap::viewvertices_container::iterator vv = vvertices.begin(), vvend = vvertices.end(); if (_global.debug & G_DEBUG_FREESTYLE) {
vv != vvend; ViewMap::viewvertices_container& vvertices = ioViewMap->ViewVertices();
++vv) for (ViewMap::viewvertices_container::iterator vv = vvertices.begin(), vvend = vvertices.end();
{ vv != vvend; ++vv)
if ((*vv)->getNature() == Nature::T_VERTEX) { {
TVertex *tvertex = (TVertex *)(*vv); if ((*vv)->getNature() == Nature::T_VERTEX) {
if (_global.debug & G_DEBUG_FREESTYLE) { TVertex *tvertex = (TVertex *)(*vv);
cout << "TVertex " << tvertex->getId() << " has :" << endl; cout << "TVertex " << tvertex->getId() << " has :" << endl;
cout << "FrontEdgeA: " << tvertex->frontEdgeA().first << endl; cout << "FrontEdgeA: " << tvertex->frontEdgeA().first << endl;
cout << "FrontEdgeB: " << tvertex->frontEdgeB().first << endl; cout << "FrontEdgeB: " << tvertex->frontEdgeB().first << endl;
@ -2128,6 +2128,7 @@ void ViewMapBuilder::ComputeIntersections(ViewMap *ioViewMap, intersection_algo
} }
} }
} }
#endif
} }
struct less_SVertex2D : public binary_function<SVertex *, SVertex *, bool> struct less_SVertex2D : public binary_function<SVertex *, SVertex *, bool>