Changes in src/triangleintersectionlist.cpp [8db598:bc84ffc]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/triangleintersectionlist.cpp
r8db598 rbc84ffc 119 119 DistanceToPointMap * points = Tess->FindClosestBoundaryPointsToVector(Point,Vicinity); 120 120 if (points == NULL) { 121 eLog() << Verbose(1) << "There is no nearest point: too far away from the surface." << endl;121 DoeLog(1) && (eLog()<< Verbose(1) << "There is no nearest point: too far away from the surface." << endl); 122 122 return; 123 123 } … … 135 135 Intersection = new Vector; 136 136 (*TriangleRunner)->GetClosestPointInsideTriangle(Point, Intersection); 137 // cout<< "Intersection between " << *Point << " and " << **TriangleRunner << " is at " << *Intersection << "." << endl;137 //Log() << Verbose(1) << "Intersection between " << *Point << " and " << **TriangleRunner << " is at " << *Intersection << "." << endl; 138 138 IntersectionList.insert( pair<BoundaryTriangleSet *, Vector * > (*TriangleRunner, Intersection) ); 139 139 } … … 150 150 151 151 //for (DistanceTriangleMap::const_iterator runner = DistanceList.begin(); runner != DistanceList.end(); runner++) 152 // cout<< (*runner).first << " away from " << *(*runner).second << endl;152 // Log() << Verbose(1) << (*runner).first << " away from " << *(*runner).second << endl; 153 153 }; 154 154
Note:
See TracChangeset
for help on using the changeset viewer.