Changes in src/boundary.hpp [6b5657:88b400]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/boundary.hpp
r6b5657 r88b400 1 1 #ifndef BOUNDARY_HPP_ 2 2 #define BOUNDARY_HPP_ 3 4 using namespace std; 3 5 4 6 /*********************************************** includes ***********************************/ … … 16 18 17 19 #include "defs.hpp" 18 #include "BoundaryMaps.hpp"19 20 20 21 /****************************************** forward declarations *****************************/ 21 22 23 class atom; 22 24 class BoundaryPointSet; 23 25 class BoundaryLineSet; … … 28 30 class MoleculeListClass; 29 31 class Tesselation; 30 class TesselPoint;31 32 class Vector; 32 33 … … 37 38 enum { SingleStepWidth=10 }; 38 39 40 typedef std::pair < double, class atom* > DistancePair; 41 typedef std::multimap < double, class atom* > DistanceMap; 42 typedef std::pair < DistanceMap::iterator, bool> DistanceTestPair; 43 44 typedef std::map <double, DistancePair > Boundaries; 45 typedef std::pair<double, DistancePair > BoundariesPair; 46 typedef std::pair< Boundaries::iterator, bool> BoundariesTestPair; 47 39 48 /********************************************** declarations *******************************/ 40 49 … … 43 52 void FindConvexBorder(const molecule* const mol, Boundaries *BoundaryPts, Tesselation *&TesselStruct, const LinkedCell *LCList, const char *filename); 44 53 Vector* FindEmbeddingHole(MoleculeListClass *mols, molecule *srcmol); 54 void FindNextSuitablePoint(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC); 45 55 bool FindNonConvexBorder(const molecule* const mol, Tesselation *&TesselStruct, const LinkedCell *&LC, const double RADIUS, const char *tempbasename); 46 56 Boundaries *GetBoundaryPoints(const molecule *mol, Tesselation *&TesselStruct);
Note:
See TracChangeset
for help on using the changeset viewer.