Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/triangleintersectionlist.cpp

    r8db598 rbc84ffc  
    119119  DistanceToPointMap * points = Tess->FindClosestBoundaryPointsToVector(Point,Vicinity);
    120120  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);
    122122    return;
    123123  }
     
    135135    Intersection = new Vector;
    136136    (*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;
    138138    IntersectionList.insert( pair<BoundaryTriangleSet *, Vector * > (*TriangleRunner, Intersection) );
    139139  }
     
    150150
    151151  //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;
    153153};
    154154
Note: See TracChangeset for help on using the changeset viewer.