Ignore:
Timestamp:
Aug 7, 2009, 12:46:27 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
609e48
Parents:
0fc0b5
Message:

BUGFIX: PointCloud implementation in molecule stopped one before last, IsLast() -> IsEnd()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/tesselation.cpp

    r0fc0b5 ref5521  
    912912
    913913  cloud->GoToFirst();
    914   while (!cloud->IsLast()) {  // we only have to go once through all points, as boundary can become only bigger
     914  while (!cloud->IsEnd()) {  // we only have to go once through all points, as boundary can become only bigger
    915915    Walker = cloud->GetPoint();
    916916    *out << Verbose(2) << "Current point is " << *Walker << "." << endl;
     
    13251325  cout << Verbose(0) << "Begin of Find_next_suitable_triangle\n";
    13261326  bool result = true;
    1327   bool degenerateTriangle = false;
    13281327  CandidateList *Opt_Candidates = new CandidateList();
    13291328
Note: See TracChangeset for help on using the changeset viewer.