Changes in src/triangleintersectionlist.cpp [bdc91e:36166d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/triangleintersectionlist.cpp
rbdc91e r36166d 11 11 #include "Helpers/MemDebug.hpp" 12 12 13 #include <boost/scoped_ptr.hpp>14 15 13 #include "triangleintersectionlist.hpp" 16 14 … … 18 16 #include "tesselation.hpp" 19 17 #include "vector.hpp" 18 #include "verbose.hpp" 20 19 21 20 /** Constructor for class TriangleIntersectionList. … … 120 119 121 120 // get closest points 122 boost::scoped_ptr< DistanceToPointMap > points(Tess->FindClosestBoundaryPointsToVector(Point,Vicinity));121 DistanceToPointMap * points = Tess->FindClosestBoundaryPointsToVector(Point,Vicinity); 123 122 if (points == NULL) { 124 123 DoeLog(1) && (eLog()<< Verbose(1) << "There is no nearest point: too far away from the surface." << endl);
Note:
See TracChangeset
for help on using the changeset viewer.