Changeset 8a34e69


Ignore:
Timestamp:
Jan 13, 2010, 2:00:14 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
3dea05
Parents:
49d3e1e
Message:

Boolean return value of Tesselation::IsInnerPoint in FillWithMolecule() was wrong way round.

  • position is outer point if IsInnerPoint returns false, then FillResult should be true (this was amended by filling when FillIt was false). Fixed.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/boundary.cpp

    r49d3e1e r8a34e69  
    853853          // get linked cell list
    854854          if (TesselStruct[i] == NULL) {
    855             eLog() << Verbose(1) << "TesselStruct of " << (*ListRunner) << " is NULL. Didn't we pre-create it?" << endl;
     855            eLog() << Verbose(0) << "TesselStruct of " << (*ListRunner) << " is NULL. Didn't we pre-create it?" << endl;
    856856            FillIt = false;
    857857          } else {
     
    867867        }
    868868
    869         if (!FillIt) {
     869        if (FillIt) {
    870870          // fill in Filler
    871871          Log() << Verbose(2) << "Space at " << CurrentPosition << " is unoccupied by any molecule, filling in." << endl;
Note: See TracChangeset for help on using the changeset viewer.