Changeset 51d33c5 for molecuilder
- Timestamp:
- Oct 14, 2008, 1:26:02 PM (17 years ago)
- Children:
- 7a3724
- Parents:
- 26f52a
- File:
-
- 1 edited
-
molecuilder/src/boundary.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/boundary.cpp
r26f52a r51d33c5 934 934 void Tesselation::AddPoint(atom *Walker) 935 935 { 936 PointTestPair InsertUnique; 936 937 BPS[0] = new class BoundaryPointSet(Walker); 937 PointsOnBoundary.insert( PointPair(Walker->nr, BPS[0]) ); 938 PointsOnBoundaryCount++; 939 }; 938 InsertUnique = PointsOnBoundary.insert( PointPair(Walker->nr, BPS[0]) ); 939 if (InsertUnique.second) // if new point was not present before, increase counter 940 PointsOnBoundaryCount++; 941 };
Note:
See TracChangeset
for help on using the changeset viewer.
