Changes in src/boundary.cpp [1883f9:6b5657]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/boundary.cpp
r1883f9 r6b5657 3 3 * Implementations and super-function for envelopes 4 4 */ 5 6 // include config.h 7 #ifdef HAVE_CONFIG_H 8 #include <config.h> 9 #endif 5 10 6 11 #include "Helpers/MemDebug.hpp" … … 193 198 } 194 199 DoLog(1) && (Log() << Verbose(1) << "Inserting " << **iter << ": (r, alpha) = (" << radius << "," << angle << "): " << ProjectedVector << endl); 195 BoundaryTestPair = BoundaryPoints[axis].insert(BoundariesPair(angle, DistancePair (radius, (*iter))));200 BoundaryTestPair = BoundaryPoints[axis].insert(BoundariesPair(angle, TesselPointDistancePair (radius, (*iter)))); 196 201 if (!BoundaryTestPair.second) { // same point exists, check first r, then distance of original vectors to center of gravity 197 202 DoLog(2) && (Log() << Verbose(2) << "Encountered two vectors whose projection onto axis " << axis << " is equal: " << endl);
Note:
See TracChangeset
for help on using the changeset viewer.