Changeset 252790 for molecuilder


Ignore:
Timestamp:
Jan 14, 2010, 5:32:47 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
1aa2a5
Parents:
249522
Message:

Changed verbosity for Vector::GetIntersectionWithPlane().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/vector.cpp

    r249522 r252790  
    222222 * \param *Origin first vector of line
    223223 * \param *LineVector second vector of line
    224  * \return true -  \a this contains intersection point on return, false - line is parallel to plane
     224 * \return true -  \a this contains intersection point on return, false - line is parallel to plane (even if in-plane)
    225225 */
    226226bool Vector::GetIntersectionWithPlane(const Vector * const PlaneNormal, const Vector * const PlaneOffset, const Vector * const Origin, const Vector * const LineVector)
     
    235235  Direction.Normalize();
    236236  Log() << Verbose(1) << "INFO: Direction is " << Direction << "." << endl;
     237  //Log() << Verbose(1) << "INFO: PlaneNormal is " << *PlaneNormal << " and PlaneOffset is " << *PlaneOffset << "." << endl;
    237238  factor = Direction.ScalarProduct(PlaneNormal);
    238   if (factor < MYEPSILON) { // Uniqueness: line parallel to plane?
    239     eLog() << Verbose(2) << "Line is parallel to plane, no intersection." << endl;
     239  if (fabs(factor) < MYEPSILON) { // Uniqueness: line parallel to plane?
     240    Log() << Verbose(1) << "BAD: Line is parallel to plane, no intersection." << endl;
    240241    return false;
    241242  }
     
    243244  helper.SubtractVector(Origin);
    244245  factor = helper.ScalarProduct(PlaneNormal)/factor;
    245   if (factor < MYEPSILON) { // Origin is in-plane
    246     Log() << Verbose(1) << "Origin of line is in-plane, simple." << endl;
     246  if (fabs(factor) < MYEPSILON) { // Origin is in-plane
     247    Log() << Verbose(1) << "GOOD: Origin of line is in-plane." << endl;
    247248    CopyVector(Origin);
    248249    return true;
     
    258259  helper.SubtractVector(PlaneOffset);
    259260  if (helper.ScalarProduct(PlaneNormal) < MYEPSILON) {
    260     Log() << Verbose(1) << "INFO: Intersection at " << *this << " is good." << endl;
     261    Log() << Verbose(1) << "GOOD: Intersection is " << *this << "." << endl;
    261262    return true;
    262263  } else {
     
    353354  Vector parallel;
    354355  double factor = 0.;
    355   double pfactor = 0.;
    356356  if (fabs(a.ScalarProduct(&b)*a.ScalarProduct(&b)/a.NormSquared()/b.NormSquared() - 1.) < MYEPSILON) {
    357357    parallel.CopyVector(Line1a);
Note: See TracChangeset for help on using the changeset viewer.