| [357fba] | 1 | /*
 | 
|---|
 | 2 |  * tesselation.hpp
 | 
|---|
 | 3 |  *
 | 
|---|
 | 4 |  *  The tesselation class is meant to contain the envelope (concave, convex or neither) of a set of Vectors. As we actually mean this stuff for atoms, we have to encapsulate it all a bit.
 | 
|---|
 | 5 |  *
 | 
|---|
 | 6 |  *  Created on: Aug 3, 2009
 | 
|---|
 | 7 |  *      Author: heber
 | 
|---|
 | 8 |  */
 | 
|---|
 | 9 | 
 | 
|---|
 | 10 | #ifndef TESSELATION_HPP_
 | 
|---|
 | 11 | #define TESSELATION_HPP_
 | 
|---|
 | 12 | 
 | 
|---|
 | 13 | using namespace std;
 | 
|---|
 | 14 | 
 | 
|---|
| [f66195] | 15 | /*********************************************** includes ***********************************/
 | 
|---|
 | 16 | 
 | 
|---|
| [357fba] | 17 | // include config.h
 | 
|---|
 | 18 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 19 | #include <config.h>
 | 
|---|
 | 20 | #endif
 | 
|---|
 | 21 | 
 | 
|---|
 | 22 | #include <map>
 | 
|---|
 | 23 | #include <list>
 | 
|---|
| [7c14ec] | 24 | #include <set>
 | 
|---|
| [357fba] | 25 | 
 | 
|---|
| [6b919f8] | 26 | #include "atom_particleinfo.hpp"
 | 
|---|
| [4455f4] | 27 | #include "helpers.hpp"
 | 
|---|
| [6b919f8] | 28 | #include "vector.hpp"
 | 
|---|
| [357fba] | 29 | 
 | 
|---|
| [f66195] | 30 | /****************************************** forward declarations *****************************/
 | 
|---|
 | 31 | 
 | 
|---|
| [357fba] | 32 | class BoundaryPointSet;
 | 
|---|
 | 33 | class BoundaryLineSet;
 | 
|---|
 | 34 | class BoundaryTriangleSet;
 | 
|---|
| [f66195] | 35 | class LinkedCell;
 | 
|---|
| [357fba] | 36 | class TesselPoint;
 | 
|---|
 | 37 | class PointCloud;
 | 
|---|
 | 38 | class Tesselation;
 | 
|---|
 | 39 | 
 | 
|---|
| [f66195] | 40 | /********************************************** definitions *********************************/
 | 
|---|
 | 41 | 
 | 
|---|
| [57066a] | 42 | #define DoTecplotOutput 1
 | 
|---|
 | 43 | #define DoRaster3DOutput 1
 | 
|---|
 | 44 | #define DoVRMLOutput 1
 | 
|---|
 | 45 | #define TecplotSuffix ".dat"
 | 
|---|
 | 46 | #define Raster3DSuffix ".r3d"
 | 
|---|
 | 47 | #define VRMLSUffix ".wrl"
 | 
|---|
 | 48 | 
 | 
|---|
| [357fba] | 49 | // ======================================================= some template functions =========================================
 | 
|---|
 | 50 | 
 | 
|---|
 | 51 | #define PointMap map < int, class BoundaryPointSet * >
 | 
|---|
 | 52 | #define PointPair pair < int, class BoundaryPointSet * >
 | 
|---|
 | 53 | #define PointTestPair pair < PointMap::iterator, bool >
 | 
|---|
 | 54 | #define CandidateList list <class CandidateForTesselation *>
 | 
|---|
 | 55 | 
 | 
|---|
 | 56 | #define LineMap multimap < int, class BoundaryLineSet * >
 | 
|---|
 | 57 | #define LinePair pair < int, class BoundaryLineSet * >
 | 
|---|
 | 58 | #define LineTestPair pair < LineMap::iterator, bool >
 | 
|---|
 | 59 | 
 | 
|---|
 | 60 | #define TriangleMap map < int, class BoundaryTriangleSet * >
 | 
|---|
 | 61 | #define TrianglePair pair < int, class BoundaryTriangleSet * >
 | 
|---|
 | 62 | #define TriangleTestPair pair < TrianglePair::iterator, bool >
 | 
|---|
 | 63 | 
 | 
|---|
 | 64 | #define DistanceMultiMap multimap <double, pair < PointMap::iterator, PointMap::iterator> >
 | 
|---|
 | 65 | #define DistanceMultiMapPair pair <double, pair < PointMap::iterator, PointMap::iterator> >
 | 
|---|
 | 66 | 
 | 
|---|
| [f66195] | 67 | /********************************************** declarations *******************************/
 | 
|---|
| [357fba] | 68 | 
 | 
|---|
 | 69 | template <typename T> void SetEndpointsOrdered(T endpoints[2], T endpoint1, T endpoint2)
 | 
|---|
 | 70 | {
 | 
|---|
 | 71 |   if (endpoint1->Nr < endpoint2->Nr) {
 | 
|---|
 | 72 |     endpoints[0] = endpoint1;
 | 
|---|
 | 73 |     endpoints[1] = endpoint2;
 | 
|---|
 | 74 |   } else {
 | 
|---|
 | 75 |     endpoints[0] = endpoint2;
 | 
|---|
 | 76 |     endpoints[1] = endpoint1;
 | 
|---|
 | 77 |   }
 | 
|---|
 | 78 | };
 | 
|---|
 | 79 | 
 | 
|---|
 | 80 | // ======================================================== class BoundaryPointSet =========================================
 | 
|---|
 | 81 | 
 | 
|---|
 | 82 | class BoundaryPointSet {
 | 
|---|
 | 83 |   public:
 | 
|---|
 | 84 |     BoundaryPointSet();
 | 
|---|
| [776b64] | 85 |     BoundaryPointSet(TesselPoint * Walker);
 | 
|---|
| [357fba] | 86 |     ~BoundaryPointSet();
 | 
|---|
 | 87 | 
 | 
|---|
 | 88 |     void AddLine(class BoundaryLineSet *line);
 | 
|---|
 | 89 | 
 | 
|---|
 | 90 |     LineMap lines;
 | 
|---|
 | 91 |     int LinesCount;
 | 
|---|
 | 92 |     TesselPoint *node;
 | 
|---|
| [16d866] | 93 |     double value;
 | 
|---|
| [357fba] | 94 |     int Nr;
 | 
|---|
 | 95 | };
 | 
|---|
 | 96 | 
 | 
|---|
| [776b64] | 97 | ostream & operator << (ostream &ost, const BoundaryPointSet &a);
 | 
|---|
| [357fba] | 98 | 
 | 
|---|
 | 99 | // ======================================================== class BoundaryLineSet ==========================================
 | 
|---|
 | 100 | 
 | 
|---|
 | 101 | class BoundaryLineSet {
 | 
|---|
 | 102 |   public:
 | 
|---|
 | 103 |     BoundaryLineSet();
 | 
|---|
| [776b64] | 104 |     BoundaryLineSet(class BoundaryPointSet *Point[2], const int number);
 | 
|---|
| [357fba] | 105 |     ~BoundaryLineSet();
 | 
|---|
 | 106 | 
 | 
|---|
 | 107 |     void AddTriangle(class BoundaryTriangleSet *triangle);
 | 
|---|
 | 108 |     bool IsConnectedTo(class BoundaryLineSet *line);
 | 
|---|
 | 109 |     bool ContainsBoundaryPoint(class BoundaryPointSet *point);
 | 
|---|
| [e138de] | 110 |     bool CheckConvexityCriterion();
 | 
|---|
| [62bb91] | 111 |     class BoundaryPointSet *GetOtherEndpoint(class BoundaryPointSet *);
 | 
|---|
| [357fba] | 112 | 
 | 
|---|
 | 113 |     class BoundaryPointSet *endpoints[2];
 | 
|---|
 | 114 |     TriangleMap triangles;
 | 
|---|
 | 115 |     int Nr;
 | 
|---|
 | 116 | };
 | 
|---|
 | 117 | 
 | 
|---|
| [776b64] | 118 | ostream & operator << (ostream &ost, const BoundaryLineSet &a);
 | 
|---|
| [357fba] | 119 | 
 | 
|---|
 | 120 | // ======================================================== class BoundaryTriangleSet =======================================
 | 
|---|
 | 121 | 
 | 
|---|
 | 122 | class BoundaryTriangleSet {
 | 
|---|
 | 123 |   public:
 | 
|---|
 | 124 |     BoundaryTriangleSet();
 | 
|---|
 | 125 |     BoundaryTriangleSet(class BoundaryLineSet *line[3], int number);
 | 
|---|
 | 126 |     ~BoundaryTriangleSet();
 | 
|---|
 | 127 | 
 | 
|---|
 | 128 |     void GetNormalVector(Vector &NormalVector);
 | 
|---|
| [57066a] | 129 |     void GetCenter(Vector *center);
 | 
|---|
| [e138de] | 130 |     bool GetIntersectionInsideTriangle(Vector *MolCenter, Vector *x, Vector *Intersection);
 | 
|---|
| [357fba] | 131 |     bool ContainsBoundaryLine(class BoundaryLineSet *line);
 | 
|---|
 | 132 |     bool ContainsBoundaryPoint(class BoundaryPointSet *point);
 | 
|---|
| [7dea7c] | 133 |     bool ContainsBoundaryPoint(class TesselPoint *point);
 | 
|---|
| [62bb91] | 134 |     class BoundaryPointSet *GetThirdEndpoint(class BoundaryLineSet *line);
 | 
|---|
| [357fba] | 135 |     bool IsPresentTupel(class BoundaryPointSet *Points[3]);
 | 
|---|
| [57066a] | 136 |     bool IsPresentTupel(class BoundaryTriangleSet *T);
 | 
|---|
| [357fba] | 137 | 
 | 
|---|
 | 138 |     class BoundaryPointSet *endpoints[3];
 | 
|---|
 | 139 |     class BoundaryLineSet *lines[3];
 | 
|---|
 | 140 |     Vector NormalVector;
 | 
|---|
 | 141 |     int Nr;
 | 
|---|
 | 142 | };
 | 
|---|
 | 143 | 
 | 
|---|
| [776b64] | 144 | ostream & operator << (ostream &ost, const BoundaryTriangleSet &a);
 | 
|---|
| [357fba] | 145 | 
 | 
|---|
 | 146 | // =========================================================== class TESSELPOINT ===========================================
 | 
|---|
 | 147 | 
 | 
|---|
 | 148 | /** Is a single point of the set of Vectors, also a super-class to be inherited and and its functions to be implemented.
 | 
|---|
 | 149 |  */
 | 
|---|
| [4455f4] | 150 | class TesselPoint : virtual public ParticleInfo {
 | 
|---|
| [357fba] | 151 | public:
 | 
|---|
 | 152 |   TesselPoint();
 | 
|---|
| [5c7bf8] | 153 |   virtual ~TesselPoint();
 | 
|---|
| [357fba] | 154 | 
 | 
|---|
 | 155 |   Vector *node;   // pointer to position of the dot in space
 | 
|---|
| [5c7bf8] | 156 | 
 | 
|---|
 | 157 |   virtual ostream & operator << (ostream &ost);
 | 
|---|
| [357fba] | 158 | };
 | 
|---|
 | 159 | 
 | 
|---|
 | 160 | ostream & operator << (ostream &ost, const TesselPoint &a);
 | 
|---|
 | 161 | 
 | 
|---|
 | 162 | // =========================================================== class POINTCLOUD ============================================
 | 
|---|
 | 163 | 
 | 
|---|
 | 164 | /** Super-class for all point clouds structures, also molecules. They have to inherit this structure and implement the virtual function to access the Vectors.
 | 
|---|
 | 165 |  * This basically encapsulates a list structure.
 | 
|---|
 | 166 |  */
 | 
|---|
 | 167 | class PointCloud {
 | 
|---|
 | 168 | public:
 | 
|---|
 | 169 |   PointCloud();
 | 
|---|
| [ab1932] | 170 |   virtual ~PointCloud();
 | 
|---|
| [357fba] | 171 | 
 | 
|---|
| [e138de] | 172 |   virtual Vector *GetCenter() const { return NULL; };
 | 
|---|
| [776b64] | 173 |   virtual TesselPoint *GetPoint() const { return NULL; };
 | 
|---|
 | 174 |   virtual TesselPoint *GetTerminalPoint() const { return NULL; };
 | 
|---|
 | 175 |   virtual void GoToNext() const {};
 | 
|---|
 | 176 |   virtual void GoToPrevious() const {};
 | 
|---|
 | 177 |   virtual void GoToFirst() const {};
 | 
|---|
 | 178 |   virtual void GoToLast() const {};
 | 
|---|
 | 179 |   virtual bool IsEmpty() const { return false; };
 | 
|---|
 | 180 |   virtual bool IsEnd() const { return false; };
 | 
|---|
| [357fba] | 181 | };
 | 
|---|
 | 182 | 
 | 
|---|
 | 183 | // ======================================================== class CandidateForTesselation =========================================
 | 
|---|
 | 184 | 
 | 
|---|
 | 185 | class CandidateForTesselation {
 | 
|---|
 | 186 |   public :
 | 
|---|
 | 187 |   CandidateForTesselation(TesselPoint* candidate, BoundaryLineSet* currentBaseLine, Vector OptCandidateCenter, Vector OtherOptCandidateCenter);
 | 
|---|
 | 188 |   ~CandidateForTesselation();
 | 
|---|
 | 189 | 
 | 
|---|
 | 190 |   TesselPoint *point;
 | 
|---|
 | 191 |   BoundaryLineSet *BaseLine;
 | 
|---|
 | 192 |   Vector OptCenter;
 | 
|---|
 | 193 |   Vector OtherOptCenter;
 | 
|---|
 | 194 | };
 | 
|---|
 | 195 | 
 | 
|---|
 | 196 | // =========================================================== class TESSELATION ===========================================
 | 
|---|
 | 197 | 
 | 
|---|
 | 198 | /** Contains the envelope to a PointCloud.
 | 
|---|
 | 199 |  */
 | 
|---|
| [5c7bf8] | 200 | class Tesselation : public PointCloud {
 | 
|---|
| [357fba] | 201 |   public:
 | 
|---|
 | 202 | 
 | 
|---|
 | 203 |     Tesselation();
 | 
|---|
| [5c7bf8] | 204 |     virtual ~Tesselation();
 | 
|---|
| [357fba] | 205 | 
 | 
|---|
| [776b64] | 206 |     void AddTesselationPoint(TesselPoint* Candidate, const int n);
 | 
|---|
| [f1ef60a] | 207 |     void SetTesselationPoint(TesselPoint* Candidate, const int n) const;
 | 
|---|
| [776b64] | 208 |     void AddTesselationLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
 | 
|---|
 | 209 |     void AlwaysAddTesselationTriangleLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
 | 
|---|
| [16d866] | 210 |     void AddTesselationTriangle();
 | 
|---|
| [776b64] | 211 |     void AddTesselationTriangle(const int nr);
 | 
|---|
| [16d866] | 212 |     void RemoveTesselationTriangle(class BoundaryTriangleSet *triangle);
 | 
|---|
 | 213 |     void RemoveTesselationLine(class BoundaryLineSet *line);
 | 
|---|
 | 214 |     void RemoveTesselationPoint(class BoundaryPointSet *point);
 | 
|---|
 | 215 | 
 | 
|---|
| [357fba] | 216 | 
 | 
|---|
 | 217 |     // concave envelope
 | 
|---|
| [e138de] | 218 |     void FindStartingTriangle(const double RADIUS, const LinkedCell *LC);
 | 
|---|
| [776b64] | 219 |     void FindSecondPointForTesselation(class TesselPoint* a, Vector Oben, class TesselPoint*& OptCandidate, double Storage[3], double RADIUS, const LinkedCell *LC);
 | 
|---|
| [f1ef60a] | 220 |     void FindThirdPointForTesselation(Vector &NormalVector, Vector &SearchDirection, Vector &OldSphereCenter, class BoundaryLineSet *BaseLine, const class TesselPoint * const ThirdNode, CandidateList* &candidates, double *ShortestAngle, const double RADIUS, const LinkedCell *LC) const;
 | 
|---|
| [e138de] | 221 |     bool FindNextSuitableTriangle(BoundaryLineSet &Line, BoundaryTriangleSet &T, const double& RADIUS, const LinkedCell *LC);
 | 
|---|
| [f1ef60a] | 222 |     int CheckPresenceOfTriangle(class TesselPoint *Candidates[3]) const;
 | 
|---|
| [e138de] | 223 |     class BoundaryTriangleSet * GetPresentTriangle(TesselPoint *Candidates[3]);
 | 
|---|
| [357fba] | 224 | 
 | 
|---|
 | 225 |     // convex envelope
 | 
|---|
| [e138de] | 226 |     void TesselateOnBoundary(const PointCloud * const cloud);
 | 
|---|
 | 227 |     void GuessStartingTriangle();
 | 
|---|
 | 228 |     bool InsertStraddlingPoints(const PointCloud *cloud, const LinkedCell *LC);
 | 
|---|
 | 229 |     double RemovePointFromTesselatedSurface(class BoundaryPointSet *point);
 | 
|---|
 | 230 |     class BoundaryLineSet * FlipBaseline(class BoundaryLineSet *Base);
 | 
|---|
 | 231 |     double PickFarthestofTwoBaselines(class BoundaryLineSet *Base);
 | 
|---|
 | 232 |     class BoundaryPointSet *IsConvexRectangle(class BoundaryLineSet *Base);
 | 
|---|
| [57066a] | 233 |     map<int, int> * FindAllDegeneratedTriangles();
 | 
|---|
 | 234 |     map<int, int> * FindAllDegeneratedLines();
 | 
|---|
| [7c14ec] | 235 |     void RemoveDegeneratedTriangles();
 | 
|---|
| [e138de] | 236 |     void AddBoundaryPointByDegeneratedTriangle(class TesselPoint *point, LinkedCell *LC);
 | 
|---|
| [16d866] | 237 | 
 | 
|---|
| [e138de] | 238 |     set<TesselPoint*> * GetAllConnectedPoints(const TesselPoint* const Point) const;
 | 
|---|
 | 239 |     set<BoundaryTriangleSet*> *GetAllTriangles(const BoundaryPointSet * const Point) const;
 | 
|---|
 | 240 |     list<list<TesselPoint*> *> * GetPathsOfConnectedPoints(const TesselPoint* const Point) const;
 | 
|---|
 | 241 |     list<list<TesselPoint*> *> * GetClosedPathsOfConnectedPoints(const TesselPoint* const Point) const;
 | 
|---|
 | 242 |     list<TesselPoint*> * GetCircleOfConnectedPoints(const TesselPoint* const Point, const Vector * const Reference = NULL) const;
 | 
|---|
| [776b64] | 243 |     class BoundaryPointSet *GetCommonEndpoint(const BoundaryLineSet * line1, const BoundaryLineSet * line2) const;
 | 
|---|
 | 244 |     list<BoundaryTriangleSet*> *FindTriangles(const TesselPoint* const Points[3]) const;
 | 
|---|
| [e138de] | 245 |     list<BoundaryTriangleSet*> * FindClosestTrianglesToPoint(const Vector *x, const LinkedCell* LC) const;
 | 
|---|
 | 246 |     class BoundaryTriangleSet * FindClosestTriangleToPoint(const Vector *x, const LinkedCell* LC) const;
 | 
|---|
 | 247 |     bool IsInnerPoint(const Vector &Point, const LinkedCell* const LC) const;
 | 
|---|
 | 248 |     bool IsInnerPoint(const TesselPoint * const Point, const LinkedCell* const LC) const;
 | 
|---|
| [776b64] | 249 |     bool AddBoundaryPoint(TesselPoint * Walker, const int n);
 | 
|---|
| [ab1932] | 250 | 
 | 
|---|
| [0077b5] | 251 |     // print for debugging
 | 
|---|
| [776b64] | 252 |     void PrintAllBoundaryPoints(ofstream *out) const;
 | 
|---|
 | 253 |     void PrintAllBoundaryLines(ofstream *out) const;
 | 
|---|
 | 254 |     void PrintAllBoundaryTriangles(ofstream *out) const;
 | 
|---|
| [0077b5] | 255 | 
 | 
|---|
| [57066a] | 256 |     // store envelope in file
 | 
|---|
| [e138de] | 257 |     void Output(const char *filename, const PointCloud * const cloud);
 | 
|---|
| [0077b5] | 258 | 
 | 
|---|
| [357fba] | 259 |     PointMap PointsOnBoundary;
 | 
|---|
 | 260 |     LineMap LinesOnBoundary;
 | 
|---|
 | 261 |     TriangleMap TrianglesOnBoundary;
 | 
|---|
 | 262 |     int PointsOnBoundaryCount;
 | 
|---|
 | 263 |     int LinesOnBoundaryCount;
 | 
|---|
 | 264 |     int TrianglesOnBoundaryCount;
 | 
|---|
 | 265 | 
 | 
|---|
| [5c7bf8] | 266 |     // PointCloud implementation for PointsOnBoundary
 | 
|---|
| [776b64] | 267 |     virtual Vector *GetCenter(ofstream *out) const;
 | 
|---|
 | 268 |     virtual TesselPoint *GetPoint() const;
 | 
|---|
 | 269 |     virtual TesselPoint *GetTerminalPoint() const;
 | 
|---|
 | 270 |     virtual void GoToNext() const;
 | 
|---|
 | 271 |     virtual void GoToPrevious() const;
 | 
|---|
 | 272 |     virtual void GoToFirst() const;
 | 
|---|
 | 273 |     virtual void GoToLast() const;
 | 
|---|
 | 274 |     virtual bool IsEmpty() const;
 | 
|---|
 | 275 |     virtual bool IsEnd() const;
 | 
|---|
| [5c7bf8] | 276 | 
 | 
|---|
| [357fba] | 277 |     class BoundaryPointSet *BPS[2];
 | 
|---|
 | 278 |     class BoundaryLineSet *BLS[3];
 | 
|---|
 | 279 |     class BoundaryTriangleSet *BTS;
 | 
|---|
| [57066a] | 280 |     class BoundaryTriangleSet *LastTriangle;
 | 
|---|
 | 281 |     int TriangleFilesWritten;
 | 
|---|
| [5c7bf8] | 282 | 
 | 
|---|
| [08ef35] | 283 |   private:
 | 
|---|
| [f1ef60a] | 284 |     mutable class BoundaryPointSet *TPS[3]; //this is a Storage for pointers to triangle points, this and BPS[2] needed due to AddLine restrictions
 | 
|---|
| [08ef35] | 285 | 
 | 
|---|
| [776b64] | 286 |     mutable PointMap::const_iterator InternalPointer;
 | 
|---|
| [f1ef60a] | 287 | 
 | 
|---|
 | 288 |     bool HasOtherBaselineBetterCandidate(const BoundaryLineSet * const BaseRay, const TesselPoint * const OptCandidate, double ShortestAngle, double RADIUS, const LinkedCell * const LC) const;
 | 
|---|
| [357fba] | 289 | };
 | 
|---|
 | 290 | 
 | 
|---|
 | 291 | 
 | 
|---|
 | 292 | #endif /* TESSELATION_HPP_ */
 | 
|---|