Changes in src/triangleintersectionlist.cpp [36166d:952f38]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/triangleintersectionlist.cpp
r36166d r952f38 11 11 #include "Helpers/MemDebug.hpp" 12 12 13 #include <boost/scoped_ptr.hpp> 14 13 15 #include "triangleintersectionlist.hpp" 14 16 15 #include " info.hpp"17 #include "Helpers/Info.hpp" 16 18 #include "tesselation.hpp" 17 #include " vector.hpp"18 #include " verbose.hpp"19 #include "LinearAlgebra/Vector.hpp" 20 #include "Helpers/Verbose.hpp" 19 21 20 22 /** Constructor for class TriangleIntersectionList. … … 119 121 120 122 // get closest points 121 DistanceToPointMap * points = Tess->FindClosestBoundaryPointsToVector(Point,Vicinity);123 boost::scoped_ptr< DistanceToPointMap > points(Tess->FindClosestBoundaryPointsToVector(Point,Vicinity)); 122 124 if (points == NULL) { 123 125 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.