Ignore:
Timestamp:
Nov 23, 2009, 6:22:33 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
3d4969
Parents:
09d3b8
Message:

Verbosity corrected for ERROR and WARNING

  • present ERROR and WARNING prefixes removed and placed by eLog() and respective Verbosity().
  • -v... is scanned for number of 'v's and verbosity is set accordingly
  • standard verbosity is now 0.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/vector.cpp

    r09d3b8 r418117a  
    229229  factor = Direction.ScalarProduct(PlaneNormal);
    230230  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;
    232232    return false;
    233233  }
     
    253253    return true;
    254254  } 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;
    256256    return false;
    257257  }
     
    747747      x[i] = C.x[i];
    748748  } 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;
    750750  }
    751751};
     
    799799  x2.SubtractVector(y2);
    800800  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;
    802802    return false;
    803803  }
     
    833833  Zero();
    834834  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;
    836836    return false;
    837837  }
Note: See TracChangeset for help on using the changeset viewer.