Changes in src/tesselationhelpers.cpp [797126:952f38]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselationhelpers.cpp
r797126 r952f38 10 10 #include <fstream> 11 11 12 #include " info.hpp"12 #include "Helpers/Info.hpp" 13 13 #include "linkedcell.hpp" 14 #include " linearsystemofequations.hpp"15 #include " log.hpp"14 #include "LinearAlgebra/linearsystemofequations.hpp" 15 #include "Helpers/Log.hpp" 16 16 #include "tesselation.hpp" 17 17 #include "tesselationhelpers.hpp" 18 #include " vector.hpp"19 #include "Line .hpp"18 #include "LinearAlgebra/Vector.hpp" 19 #include "LinearAlgebra/Line.hpp" 20 20 #include "vector_ops.hpp" 21 #include " verbose.hpp"22 #include " Plane.hpp"23 #include " Matrix.hpp"21 #include "Helpers/Verbose.hpp" 22 #include "LinearAlgebra/Plane.hpp" 23 #include "LinearAlgebra/Matrix.hpp" 24 24 25 25 void GetSphere(Vector * const center, const Vector &a, const Vector &b, const Vector &c, const double RADIUS) … … 425 425 } 426 426 } else { 427 eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," 428 << LC->n[2] << " is invalid!" << endl; 427 DoeLog(1) && (eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," << LC->n[2] << " is invalid!" << endl); 429 428 } 430 429 } … … 481 480 } 482 481 } else { 483 eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," 484 << LC->n[2] << " is invalid!" << endl; 482 DoeLog(1) && (eLog() << Verbose(1) << "The current cell " << LC->n[0] << "," << LC->n[1] << "," << LC->n[2] << " is invalid!" << endl); 485 483 } 486 484 }
Note:
See TracChangeset
for help on using the changeset viewer.