Changeset 418117a for molecuilder/src/vector.cpp
- Timestamp:
- Nov 23, 2009, 6:22:33 PM (16 years ago)
- Children:
- 3d4969
- Parents:
- 09d3b8
- File:
-
- 1 edited
-
molecuilder/src/vector.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/vector.cpp
r09d3b8 r418117a 229 229 factor = Direction.ScalarProduct(PlaneNormal); 230 230 if (factor < MYEPSILON) { // Uniqueness: line parallel to plane? 231 Log() << Verbose(2) << "WARNING:Line is parallel to plane, no intersection." << endl;231 eLog() << Verbose(2) << "Line is parallel to plane, no intersection." << endl; 232 232 return false; 233 233 } … … 253 253 return true; 254 254 } else { 255 Log() << Verbose(2) << "WARNING:Intersection point " << *this << " is not on plane." << endl;255 eLog() << Verbose(2) << "Intersection point " << *this << " is not on plane." << endl; 256 256 return false; 257 257 } … … 747 747 x[i] = C.x[i]; 748 748 } else { 749 eLog() << Verbose( 0) << "ERROR:inverse of matrix does not exists: det A = " << detA << "." << endl;749 eLog() << Verbose(1) << "inverse of matrix does not exists: det A = " << detA << "." << endl; 750 750 } 751 751 }; … … 799 799 x2.SubtractVector(y2); 800 800 if ((fabs(x1.Norm()) < MYEPSILON) || (fabs(x2.Norm()) < MYEPSILON) || (fabs(x1.Angle(&x2)) < MYEPSILON)) { 801 Log() << Verbose(4) << "WARNING:Given vectors are linear dependent." << endl;801 eLog() << Verbose(2) << "Given vectors are linear dependent." << endl; 802 802 return false; 803 803 } … … 833 833 Zero(); 834 834 if ((fabs(x1.Norm()) < MYEPSILON) || (fabs(x2.Norm()) < MYEPSILON) || (fabs(x1.Angle(&x2)) < MYEPSILON)) { 835 Log() << Verbose(4) << "WARNING:Given vectors are linear dependent." << endl;835 eLog() << Verbose(2) << "Given vectors are linear dependent." << endl; 836 836 return false; 837 837 }
Note:
See TracChangeset
for help on using the changeset viewer.
