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