Changes in src/tesselation.cpp [112b09:6d574a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselation.cpp
r112b09 r6d574a 9 9 10 10 #include <fstream> 11 #include <assert.h>12 11 13 12 #include "helpers.hpp" … … 24 23 #include "Plane.hpp" 25 24 #include "Exceptions/LinearDependenceException.hpp" 26 #include "Helpers/Assert.hpp"27 28 25 #include "Helpers/Assert.hpp" 29 26 … … 2527 2524 baseline = Runner->second; 2528 2525 if (baseline->pointlist.empty()) { 2529 assert((baseline->BaseLine->triangles.size() == 1) && ("Open line without exactly one attached triangle"));2526 ASSERT((baseline->BaseLine->triangles.size() == 1),"Open line without exactly one attached triangle"); 2530 2527 T = (((baseline->BaseLine->triangles.begin()))->second); 2531 2528 DoLog(1) && (Log() << Verbose(1) << "Finding best candidate for open line " << *baseline->BaseLine << " of triangle " << *T << endl);
Note:
See TracChangeset
for help on using the changeset viewer.