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