[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>
|
---|
[856098] | 25 | #include <stack>
|
---|
[357fba] | 26 |
|
---|
[6b919f8] | 27 | #include "atom_particleinfo.hpp"
|
---|
[4455f4] | 28 | #include "helpers.hpp"
|
---|
[6b919f8] | 29 | #include "vector.hpp"
|
---|
[357fba] | 30 |
|
---|
[f66195] | 31 | /****************************************** forward declarations *****************************/
|
---|
| 32 |
|
---|
[357fba] | 33 | class BoundaryPointSet;
|
---|
| 34 | class BoundaryLineSet;
|
---|
| 35 | class BoundaryTriangleSet;
|
---|
[f66195] | 36 | class LinkedCell;
|
---|
[357fba] | 37 | class TesselPoint;
|
---|
| 38 | class PointCloud;
|
---|
| 39 | class Tesselation;
|
---|
| 40 |
|
---|
[f66195] | 41 | /********************************************** definitions *********************************/
|
---|
| 42 |
|
---|
[57066a] | 43 | #define DoTecplotOutput 1
|
---|
| 44 | #define DoRaster3DOutput 1
|
---|
| 45 | #define DoVRMLOutput 1
|
---|
| 46 | #define TecplotSuffix ".dat"
|
---|
| 47 | #define Raster3DSuffix ".r3d"
|
---|
| 48 | #define VRMLSUffix ".wrl"
|
---|
| 49 |
|
---|
[fad93c] | 50 | #define ParallelEpsilon 1e-3
|
---|
| 51 |
|
---|
[357fba] | 52 | // ======================================================= some template functions =========================================
|
---|
| 53 |
|
---|
[c15ca2] | 54 | #define IndexToIndex map <int, int>
|
---|
| 55 |
|
---|
[357fba] | 56 | #define PointMap map < int, class BoundaryPointSet * >
|
---|
[262bae] | 57 | #define PointSet set < class BoundaryPointSet * >
|
---|
| 58 | #define PointList list < class BoundaryPointSet * >
|
---|
[357fba] | 59 | #define PointPair pair < int, class BoundaryPointSet * >
|
---|
| 60 | #define PointTestPair pair < PointMap::iterator, bool >
|
---|
[262bae] | 61 |
|
---|
[357fba] | 62 | #define CandidateList list <class CandidateForTesselation *>
|
---|
[1e168b] | 63 | #define CandidateMap map <class BoundaryLineSet *, class CandidateForTesselation *>
|
---|
[357fba] | 64 |
|
---|
| 65 | #define LineMap multimap < int, class BoundaryLineSet * >
|
---|
[262bae] | 66 | #define LineSet set < class BoundaryLineSet * >
|
---|
| 67 | #define LineList list < class BoundaryLineSet * >
|
---|
[357fba] | 68 | #define LinePair pair < int, class BoundaryLineSet * >
|
---|
| 69 | #define LineTestPair pair < LineMap::iterator, bool >
|
---|
| 70 |
|
---|
| 71 | #define TriangleMap map < int, class BoundaryTriangleSet * >
|
---|
[262bae] | 72 | #define TriangleSet set < class BoundaryTriangleSet * >
|
---|
| 73 | #define TriangleList list < class BoundaryTriangleSet * >
|
---|
[357fba] | 74 | #define TrianglePair pair < int, class BoundaryTriangleSet * >
|
---|
| 75 | #define TriangleTestPair pair < TrianglePair::iterator, bool >
|
---|
| 76 |
|
---|
[262bae] | 77 | #define PolygonMap map < int, class BoundaryPolygonSet * >
|
---|
| 78 | #define PolygonSet set < class BoundaryPolygonSet * >
|
---|
| 79 | #define PolygonList list < class BoundaryPolygonSet * >
|
---|
| 80 |
|
---|
[97498a] | 81 | #define DistanceToPointMap multimap <double, class BoundaryPointSet * >
|
---|
| 82 | #define DistanceToPointPair pair <double, class BoundaryPointSet * >
|
---|
[c15ca2] | 83 |
|
---|
[357fba] | 84 | #define DistanceMultiMap multimap <double, pair < PointMap::iterator, PointMap::iterator> >
|
---|
| 85 | #define DistanceMultiMapPair pair <double, pair < PointMap::iterator, PointMap::iterator> >
|
---|
| 86 |
|
---|
[f67b6e] | 87 | #define TesselPointList list <TesselPoint *>
|
---|
[262bae] | 88 | #define TesselPointSet set <TesselPoint *>
|
---|
[f67b6e] | 89 |
|
---|
[f66195] | 90 | /********************************************** declarations *******************************/
|
---|
[357fba] | 91 |
|
---|
| 92 | template <typename T> void SetEndpointsOrdered(T endpoints[2], T endpoint1, T endpoint2)
|
---|
| 93 | {
|
---|
| 94 | if (endpoint1->Nr < endpoint2->Nr) {
|
---|
| 95 | endpoints[0] = endpoint1;
|
---|
| 96 | endpoints[1] = endpoint2;
|
---|
| 97 | } else {
|
---|
| 98 | endpoints[0] = endpoint2;
|
---|
| 99 | endpoints[1] = endpoint1;
|
---|
| 100 | }
|
---|
| 101 | };
|
---|
| 102 |
|
---|
| 103 | // ======================================================== class BoundaryPointSet =========================================
|
---|
| 104 |
|
---|
| 105 | class BoundaryPointSet {
|
---|
| 106 | public:
|
---|
| 107 | BoundaryPointSet();
|
---|
[776b64] | 108 | BoundaryPointSet(TesselPoint * Walker);
|
---|
[357fba] | 109 | ~BoundaryPointSet();
|
---|
| 110 |
|
---|
| 111 | void AddLine(class BoundaryLineSet *line);
|
---|
| 112 |
|
---|
| 113 | LineMap lines;
|
---|
| 114 | int LinesCount;
|
---|
| 115 | TesselPoint *node;
|
---|
[16d866] | 116 | double value;
|
---|
[357fba] | 117 | int Nr;
|
---|
| 118 | };
|
---|
| 119 |
|
---|
[776b64] | 120 | ostream & operator << (ostream &ost, const BoundaryPointSet &a);
|
---|
[357fba] | 121 |
|
---|
| 122 | // ======================================================== class BoundaryLineSet ==========================================
|
---|
| 123 |
|
---|
| 124 | class BoundaryLineSet {
|
---|
| 125 | public:
|
---|
| 126 | BoundaryLineSet();
|
---|
[776b64] | 127 | BoundaryLineSet(class BoundaryPointSet *Point[2], const int number);
|
---|
[357fba] | 128 | ~BoundaryLineSet();
|
---|
| 129 |
|
---|
| 130 | void AddTriangle(class BoundaryTriangleSet *triangle);
|
---|
| 131 | bool IsConnectedTo(class BoundaryLineSet *line);
|
---|
| 132 | bool ContainsBoundaryPoint(class BoundaryPointSet *point);
|
---|
[e138de] | 133 | bool CheckConvexityCriterion();
|
---|
[62bb91] | 134 | class BoundaryPointSet *GetOtherEndpoint(class BoundaryPointSet *);
|
---|
[357fba] | 135 |
|
---|
| 136 | class BoundaryPointSet *endpoints[2];
|
---|
| 137 | TriangleMap triangles;
|
---|
| 138 | int Nr;
|
---|
[1e168b] | 139 | bool skipped;
|
---|
[357fba] | 140 | };
|
---|
| 141 |
|
---|
[776b64] | 142 | ostream & operator << (ostream &ost, const BoundaryLineSet &a);
|
---|
[357fba] | 143 |
|
---|
| 144 | // ======================================================== class BoundaryTriangleSet =======================================
|
---|
| 145 |
|
---|
| 146 | class BoundaryTriangleSet {
|
---|
| 147 | public:
|
---|
| 148 | BoundaryTriangleSet();
|
---|
| 149 | BoundaryTriangleSet(class BoundaryLineSet *line[3], int number);
|
---|
| 150 | ~BoundaryTriangleSet();
|
---|
| 151 |
|
---|
| 152 | void GetNormalVector(Vector &NormalVector);
|
---|
[57066a] | 153 | void GetCenter(Vector *center);
|
---|
[e138de] | 154 | bool GetIntersectionInsideTriangle(Vector *MolCenter, Vector *x, Vector *Intersection);
|
---|
[357fba] | 155 | bool ContainsBoundaryLine(class BoundaryLineSet *line);
|
---|
| 156 | bool ContainsBoundaryPoint(class BoundaryPointSet *point);
|
---|
[7dea7c] | 157 | bool ContainsBoundaryPoint(class TesselPoint *point);
|
---|
[62bb91] | 158 | class BoundaryPointSet *GetThirdEndpoint(class BoundaryLineSet *line);
|
---|
[357fba] | 159 | bool IsPresentTupel(class BoundaryPointSet *Points[3]);
|
---|
[57066a] | 160 | bool IsPresentTupel(class BoundaryTriangleSet *T);
|
---|
[357fba] | 161 |
|
---|
| 162 | class BoundaryPointSet *endpoints[3];
|
---|
| 163 | class BoundaryLineSet *lines[3];
|
---|
| 164 | Vector NormalVector;
|
---|
[b998c3] | 165 | Vector SphereCenter;
|
---|
[357fba] | 166 | int Nr;
|
---|
| 167 | };
|
---|
| 168 |
|
---|
[776b64] | 169 | ostream & operator << (ostream &ost, const BoundaryTriangleSet &a);
|
---|
[357fba] | 170 |
|
---|
[262bae] | 171 |
|
---|
| 172 | // ======================================================== class BoundaryTriangleSet =======================================
|
---|
| 173 |
|
---|
| 174 | /** Set of BoundaryPointSet.
|
---|
| 175 | * This is just meant as a container for a group of endpoints, extending the node, line, triangle concept. However, this has
|
---|
| 176 | * only marginally something to do with the tesselation. Hence, there is no incorporation into the bookkeeping of the Tesselation
|
---|
| 177 | * class (i.e. no allocation, no deletion).
|
---|
| 178 | * \note we assume that the set of endpoints reside (more or less) on a plane.
|
---|
| 179 | */
|
---|
| 180 | class BoundaryPolygonSet {
|
---|
| 181 | public:
|
---|
| 182 | BoundaryPolygonSet();
|
---|
| 183 | ~BoundaryPolygonSet();
|
---|
| 184 |
|
---|
| 185 | Vector * GetNormalVector(const Vector &NormalVector) const;
|
---|
| 186 | void GetCenter(Vector *center) const;
|
---|
| 187 | bool ContainsBoundaryLine(const BoundaryLineSet * const line) const;
|
---|
| 188 | bool ContainsBoundaryPoint(const BoundaryPointSet * const point) const;
|
---|
| 189 | bool ContainsBoundaryPoint(const TesselPoint * const point) const;
|
---|
| 190 | bool ContainsBoundaryTriangle(const BoundaryTriangleSet * const point) const;
|
---|
| 191 | bool ContainsPresentTupel(const BoundaryPointSet * const * Points, const int dim) const;
|
---|
| 192 | bool ContainsPresentTupel(const BoundaryPolygonSet * const P) const;
|
---|
| 193 | bool ContainsPresentTupel(const PointSet &endpoints) const;
|
---|
[856098] | 194 | TriangleSet * GetAllContainedTrianglesFromEndpoints() const;
|
---|
[262bae] | 195 | bool FillPolygonFromTrianglesOfLine(const BoundaryLineSet * const line);
|
---|
| 196 |
|
---|
| 197 | PointSet endpoints;
|
---|
| 198 | int Nr;
|
---|
| 199 | };
|
---|
| 200 |
|
---|
| 201 | ostream & operator << (ostream &ost, const BoundaryPolygonSet &a);
|
---|
| 202 |
|
---|
[357fba] | 203 | // =========================================================== class TESSELPOINT ===========================================
|
---|
| 204 |
|
---|
| 205 | /** Is a single point of the set of Vectors, also a super-class to be inherited and and its functions to be implemented.
|
---|
| 206 | */
|
---|
[4455f4] | 207 | class TesselPoint : virtual public ParticleInfo {
|
---|
[357fba] | 208 | public:
|
---|
| 209 | TesselPoint();
|
---|
[5c7bf8] | 210 | virtual ~TesselPoint();
|
---|
[357fba] | 211 |
|
---|
| 212 | Vector *node; // pointer to position of the dot in space
|
---|
[5c7bf8] | 213 |
|
---|
| 214 | virtual ostream & operator << (ostream &ost);
|
---|
[357fba] | 215 | };
|
---|
| 216 |
|
---|
| 217 | ostream & operator << (ostream &ost, const TesselPoint &a);
|
---|
| 218 |
|
---|
| 219 | // =========================================================== class POINTCLOUD ============================================
|
---|
| 220 |
|
---|
| 221 | /** Super-class for all point clouds structures, also molecules. They have to inherit this structure and implement the virtual function to access the Vectors.
|
---|
| 222 | * This basically encapsulates a list structure.
|
---|
| 223 | */
|
---|
| 224 | class PointCloud {
|
---|
| 225 | public:
|
---|
| 226 | PointCloud();
|
---|
[ab1932] | 227 | virtual ~PointCloud();
|
---|
[357fba] | 228 |
|
---|
[6a7f78c] | 229 | virtual const char * const GetName() const { return "unknown"; };
|
---|
[e138de] | 230 | virtual Vector *GetCenter() const { return NULL; };
|
---|
[776b64] | 231 | virtual TesselPoint *GetPoint() const { return NULL; };
|
---|
| 232 | virtual TesselPoint *GetTerminalPoint() const { return NULL; };
|
---|
[71b20e] | 233 | virtual int GetMaxId() const { return 0; };
|
---|
[776b64] | 234 | virtual void GoToNext() const {};
|
---|
| 235 | virtual void GoToPrevious() const {};
|
---|
| 236 | virtual void GoToFirst() const {};
|
---|
| 237 | virtual void GoToLast() const {};
|
---|
[6a7f78c] | 238 | virtual bool IsEmpty() const { return true; };
|
---|
| 239 | virtual bool IsEnd() const { return true; };
|
---|
[357fba] | 240 | };
|
---|
| 241 |
|
---|
| 242 | // ======================================================== class CandidateForTesselation =========================================
|
---|
| 243 |
|
---|
| 244 | class CandidateForTesselation {
|
---|
| 245 | public :
|
---|
[1e168b] | 246 | CandidateForTesselation(BoundaryLineSet* currentBaseLine);
|
---|
[357fba] | 247 | CandidateForTesselation(TesselPoint* candidate, BoundaryLineSet* currentBaseLine, Vector OptCandidateCenter, Vector OtherOptCandidateCenter);
|
---|
| 248 | ~CandidateForTesselation();
|
---|
| 249 |
|
---|
[f67b6e] | 250 | TesselPointList pointlist;
|
---|
[357fba] | 251 | BoundaryLineSet *BaseLine;
|
---|
| 252 | Vector OptCenter;
|
---|
| 253 | Vector OtherOptCenter;
|
---|
[1e168b] | 254 | double ShortestAngle;
|
---|
| 255 | double OtherShortestAngle;
|
---|
[357fba] | 256 | };
|
---|
| 257 |
|
---|
[1e168b] | 258 | ostream & operator <<(ostream &ost, const CandidateForTesselation &a);
|
---|
| 259 |
|
---|
[357fba] | 260 | // =========================================================== class TESSELATION ===========================================
|
---|
| 261 |
|
---|
| 262 | /** Contains the envelope to a PointCloud.
|
---|
| 263 | */
|
---|
[5c7bf8] | 264 | class Tesselation : public PointCloud {
|
---|
[357fba] | 265 | public:
|
---|
| 266 |
|
---|
| 267 | Tesselation();
|
---|
[5c7bf8] | 268 | virtual ~Tesselation();
|
---|
[357fba] | 269 |
|
---|
[776b64] | 270 | void AddTesselationPoint(TesselPoint* Candidate, const int n);
|
---|
[f1ef60a] | 271 | void SetTesselationPoint(TesselPoint* Candidate, const int n) const;
|
---|
[776b64] | 272 | void AddTesselationLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
|
---|
| 273 | void AlwaysAddTesselationTriangleLine(class BoundaryPointSet *a, class BoundaryPointSet *b, const int n);
|
---|
[16d866] | 274 | void AddTesselationTriangle();
|
---|
[776b64] | 275 | void AddTesselationTriangle(const int nr);
|
---|
[f67b6e] | 276 | void AddCandidateTriangle(CandidateForTesselation CandidateLine);
|
---|
[16d866] | 277 | void RemoveTesselationTriangle(class BoundaryTriangleSet *triangle);
|
---|
| 278 | void RemoveTesselationLine(class BoundaryLineSet *line);
|
---|
| 279 | void RemoveTesselationPoint(class BoundaryPointSet *point);
|
---|
| 280 |
|
---|
[357fba] | 281 |
|
---|
| 282 | // concave envelope
|
---|
[e138de] | 283 | void FindStartingTriangle(const double RADIUS, const LinkedCell *LC);
|
---|
[776b64] | 284 | void FindSecondPointForTesselation(class TesselPoint* a, Vector Oben, class TesselPoint*& OptCandidate, double Storage[3], double RADIUS, const LinkedCell *LC);
|
---|
[f67b6e] | 285 | void FindThirdPointForTesselation(Vector &NormalVector, Vector &SearchDirection, Vector &OldSphereCenter, CandidateForTesselation &CandidateLine, const class TesselPoint * const ThirdNode, const double RADIUS, const LinkedCell *LC) const;
|
---|
[1e168b] | 286 | bool FindNextSuitableTriangle(CandidateForTesselation &CandidateLine, BoundaryTriangleSet &T, const double& RADIUS, const LinkedCell *LC);
|
---|
[f1ef60a] | 287 | int CheckPresenceOfTriangle(class TesselPoint *Candidates[3]) const;
|
---|
[e138de] | 288 | class BoundaryTriangleSet * GetPresentTriangle(TesselPoint *Candidates[3]);
|
---|
[357fba] | 289 |
|
---|
| 290 | // convex envelope
|
---|
[e138de] | 291 | void TesselateOnBoundary(const PointCloud * const cloud);
|
---|
| 292 | void GuessStartingTriangle();
|
---|
| 293 | bool InsertStraddlingPoints(const PointCloud *cloud, const LinkedCell *LC);
|
---|
| 294 | double RemovePointFromTesselatedSurface(class BoundaryPointSet *point);
|
---|
| 295 | class BoundaryLineSet * FlipBaseline(class BoundaryLineSet *Base);
|
---|
| 296 | double PickFarthestofTwoBaselines(class BoundaryLineSet *Base);
|
---|
| 297 | class BoundaryPointSet *IsConvexRectangle(class BoundaryLineSet *Base);
|
---|
[57066a] | 298 | map<int, int> * FindAllDegeneratedTriangles();
|
---|
| 299 | map<int, int> * FindAllDegeneratedLines();
|
---|
[7c14ec] | 300 | void RemoveDegeneratedTriangles();
|
---|
[e138de] | 301 | void AddBoundaryPointByDegeneratedTriangle(class TesselPoint *point, LinkedCell *LC);
|
---|
[262bae] | 302 | int CorrectAllDegeneratedPolygons();
|
---|
[16d866] | 303 |
|
---|
[e138de] | 304 | set<TesselPoint*> * GetAllConnectedPoints(const TesselPoint* const Point) const;
|
---|
| 305 | set<BoundaryTriangleSet*> *GetAllTriangles(const BoundaryPointSet * const Point) const;
|
---|
| 306 | list<list<TesselPoint*> *> * GetPathsOfConnectedPoints(const TesselPoint* const Point) const;
|
---|
| 307 | list<list<TesselPoint*> *> * GetClosedPathsOfConnectedPoints(const TesselPoint* const Point) const;
|
---|
[27bd2f] | 308 | list<TesselPoint*> * GetCircleOfSetOfPoints(set<TesselPoint*> *SetOfNeighbours, const TesselPoint* const Point, const Vector * const Reference = NULL) const;
|
---|
[71b20e] | 309 | list<TesselPoint*> * GetCircleOfConnectedTriangles(set<TesselPoint*> *SetOfNeighbours, const TesselPoint* const Point, const Vector * const Reference) const;
|
---|
[776b64] | 310 | class BoundaryPointSet *GetCommonEndpoint(const BoundaryLineSet * line1, const BoundaryLineSet * line2) const;
|
---|
| 311 | list<BoundaryTriangleSet*> *FindTriangles(const TesselPoint* const Points[3]) const;
|
---|
[e138de] | 312 | list<BoundaryTriangleSet*> * FindClosestTrianglesToPoint(const Vector *x, const LinkedCell* LC) const;
|
---|
| 313 | class BoundaryTriangleSet * FindClosestTriangleToPoint(const Vector *x, const LinkedCell* LC) const;
|
---|
[241485] | 314 | bool IsInnerPoint(const Vector &Point, const LinkedCell* const LC) const;
|
---|
[776b64] | 315 | bool AddBoundaryPoint(TesselPoint * Walker, const int n);
|
---|
[97498a] | 316 | DistanceToPointMap * FindClosestBoundaryPointsToVector(const Vector *x, const LinkedCell* LC) const;
|
---|
[c15ca2] | 317 | BoundaryLineSet * FindClosestBoundaryLineToVector(const Vector *x, const LinkedCell* LC) const;
|
---|
| 318 | TriangleList * FindClosestTrianglesToVector(const Vector *x, const LinkedCell* LC) const;
|
---|
| 319 | BoundaryTriangleSet* FindClosestTriangleToVector(const Vector *x, const LinkedCell* LC) const;
|
---|
[ab1932] | 320 |
|
---|
[0077b5] | 321 | // print for debugging
|
---|
[776b64] | 322 | void PrintAllBoundaryPoints(ofstream *out) const;
|
---|
| 323 | void PrintAllBoundaryLines(ofstream *out) const;
|
---|
| 324 | void PrintAllBoundaryTriangles(ofstream *out) const;
|
---|
[0077b5] | 325 |
|
---|
[57066a] | 326 | // store envelope in file
|
---|
[e138de] | 327 | void Output(const char *filename, const PointCloud * const cloud);
|
---|
[0077b5] | 328 |
|
---|
[357fba] | 329 | PointMap PointsOnBoundary;
|
---|
| 330 | LineMap LinesOnBoundary;
|
---|
[1e168b] | 331 | CandidateMap OpenLines;
|
---|
[357fba] | 332 | TriangleMap TrianglesOnBoundary;
|
---|
| 333 | int PointsOnBoundaryCount;
|
---|
| 334 | int LinesOnBoundaryCount;
|
---|
| 335 | int TrianglesOnBoundaryCount;
|
---|
| 336 |
|
---|
[5c7bf8] | 337 | // PointCloud implementation for PointsOnBoundary
|
---|
[776b64] | 338 | virtual Vector *GetCenter(ofstream *out) const;
|
---|
| 339 | virtual TesselPoint *GetPoint() const;
|
---|
| 340 | virtual TesselPoint *GetTerminalPoint() const;
|
---|
| 341 | virtual void GoToNext() const;
|
---|
| 342 | virtual void GoToPrevious() const;
|
---|
| 343 | virtual void GoToFirst() const;
|
---|
| 344 | virtual void GoToLast() const;
|
---|
| 345 | virtual bool IsEmpty() const;
|
---|
| 346 | virtual bool IsEnd() const;
|
---|
[5c7bf8] | 347 |
|
---|
[357fba] | 348 | class BoundaryPointSet *BPS[2];
|
---|
| 349 | class BoundaryLineSet *BLS[3];
|
---|
| 350 | class BoundaryTriangleSet *BTS;
|
---|
[57066a] | 351 | class BoundaryTriangleSet *LastTriangle;
|
---|
| 352 | int TriangleFilesWritten;
|
---|
[5c7bf8] | 353 |
|
---|
[08ef35] | 354 | private:
|
---|
[f1ef60a] | 355 | mutable class BoundaryPointSet *TPS[3]; //this is a Storage for pointers to triangle points, this and BPS[2] needed due to AddLine restrictions
|
---|
[08ef35] | 356 |
|
---|
[776b64] | 357 | mutable PointMap::const_iterator InternalPointer;
|
---|
[f1ef60a] | 358 |
|
---|
[f67b6e] | 359 | //bool HasOtherBaselineBetterCandidate(const BoundaryLineSet * const BaseRay, const TesselPoint * const OptCandidate, double ShortestAngle, double RADIUS, const LinkedCell * const LC) const;
|
---|
[357fba] | 360 | };
|
---|
| 361 |
|
---|
| 362 |
|
---|
| 363 | #endif /* TESSELATION_HPP_ */
|
---|