Changes in src/boundary.hpp [0077b5:7dea7c]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/boundary.hpp
r0077b5 r7dea7c 16 16 17 17 #define DEBUG 1 18 #define DoSingleStepOutput 018 #define DoSingleStepOutput 1 19 19 #define SingleStepWidth 1 20 #define DoTecplotOutput 121 #define DoRaster3DOutput 122 #define DoVRMLOutput 123 #define TecplotSuffix ".dat"24 #define Raster3DSuffix ".r3d"25 #define VRMLSUffix ".wrl"26 20 27 21 #define DistancePair pair < double, atom* > … … 37 31 void PrepareClustersinWater(ofstream *out, config *configuration, molecule *mol, double ClusterVolume, double celldensity); 38 32 molecule * FillBoxWithMolecule(ofstream *out, MoleculeListClass *List, molecule *filler, config &configuration, double distance[NDIM], double RandAtomDisplacement, double RandMolDisplacement, bool DoRandomRotation); 39 void Find _convex_border(ofstream *out, molecule* mol, class LinkedCell *LCList, const char *filename);40 void Find _non_convex_border(ofstream *out, molecule* mol, class LinkedCell *LC, const char *tempbasename, const double RADIUS);33 void FindConvexBorder(ofstream *out, molecule* mol, class LinkedCell *LCList, const char *filename); 34 void FindNonConvexBorder(ofstream *out, molecule* mol, class LinkedCell *LC, const double RADIUS, const char *tempbasename); 41 35 double ConvexizeNonconvexEnvelope(ofstream *out, class Tesselation *TesselStruct, molecule *mol, char *filename); 42 void Find _next_suitable_point(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC);36 void FindNextSuitablePoint(class BoundaryTriangleSet *BaseTriangle, class BoundaryLineSet *BaseLine, atom*& OptCandidate, Vector *OptCandidateCenter, double *ShortestAngle, const double RADIUS, LinkedCell *LC); 43 37 Boundaries *GetBoundaryPoints(ofstream *out, molecule *mol); 44 void CalculateConcavityPerBoundaryPoint(ofstream *out, class Tesselation *TesselStruct);45 38 void StoreTrianglesinFile(ofstream *out, molecule *mol, const char *filename, const char *extraSuffix); 39 bool RemoveAllBoundaryPoints(ofstream *out, class Tesselation *TesselStruct, molecule *mol, char *filename); 46 40 47 41
Note:
See TracChangeset
for help on using the changeset viewer.