Changeset 7d1633
- Timestamp:
- Apr 21, 2010, 11:46:40 AM (16 years ago)
- Children:
- c43766
- Parents:
- ad98d4
- Location:
- molecuilder/src
- Files:
-
- 3 edited
-
moleculelist.cpp (modified) (1 diff)
-
triangleintersectionlist.cpp (modified) (2 diffs)
-
vector.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/moleculelist.cpp
rad98d4 r7d1633 819 819 strncat(molecules[i]->name, number, MAXSTRINGSIZE - strlen(mol->name) - 1); 820 820 } 821 cout<< "MolName is " << molecules[i]->name << endl;821 Log() << Verbose(1) << "MolName is " << molecules[i]->name << endl; 822 822 insert(molecules[i]); 823 823 } -
molecuilder/src/triangleintersectionlist.cpp
rad98d4 r7d1633 135 135 Intersection = new Vector; 136 136 (*TriangleRunner)->GetClosestPointInsideTriangle(Point, Intersection); 137 // cout<< "Intersection between " << *Point << " and " << **TriangleRunner << " is at " << *Intersection << "." << endl;137 //Log() << Verbose(1) << "Intersection between " << *Point << " and " << **TriangleRunner << " is at " << *Intersection << "." << endl; 138 138 IntersectionList.insert( pair<BoundaryTriangleSet *, Vector * > (*TriangleRunner, Intersection) ); 139 139 } … … 150 150 151 151 //for (DistanceTriangleMap::const_iterator runner = DistanceList.begin(); runner != DistanceList.end(); runner++) 152 // cout<< (*runner).first << " away from " << *(*runner).second << endl;152 // Log() << Verbose(1) << (*runner).first << " away from " << *(*runner).second << endl; 153 153 }; 154 154 -
molecuilder/src/vector.cpp
rad98d4 r7d1633 352 352 353 353 //Log() << Verbose(1) << "Coefficent matrix is:" << endl; 354 //ostream &output = Log() << Verbose(1); 354 355 //for (int i=0;i<4;i++) { 355 356 // for (int j=0;j<4;j++) 356 // cout << "\t" << M->Get(i,j);357 // cout << endl;357 // output << "\t" << M->Get(i,j); 358 // output << endl; 358 359 //} 359 360 if (fabs(M->Determinant()) > MYEPSILON) {
Note:
See TracChangeset
for help on using the changeset viewer.
