Changes in src/tesselationhelpers.hpp [7dea7c:f1cccd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselationhelpers.hpp
r7dea7c rf1cccd 18 18 #endif 19 19 20 #define HULLEPSILON 1e-7 21 20 22 #include <gsl/gsl_linalg.h> 21 23 #include <gsl/gsl_matrix.h> … … 24 26 #include <gsl/gsl_vector.h> 25 27 26 #include "defs.hpp"27 #include "tesselation.hpp"28 28 #include "vector.hpp" 29 30 #define HULLEPSILON 1e-1031 29 32 30 double DetGet(gsl_matrix *A, int inPlace); … … 37 35 double MinIntersectDistance(const gsl_vector * x, void *params); 38 36 bool existsIntersection(Vector point1, Vector point2, Vector point3, Vector point4); 39 double CalculateVolumeofGeneralTetraeder(Vector *a, Vector *b, Vector *c, Vector *d);40 double GetAngle(const Vector &point, const Vector &reference, const Vector OrthogonalVector);41 42 bool CheckLineCriteriaForDegeneratedTriangle(class BoundaryPointSet *nodes[3]);43 bool SortCandidates(class CandidateForTesselation* candidate1, class CandidateForTesselation* candidate2);44 TesselPoint* FindClosestPoint(const Vector* Point, TesselPoint *&SecondPoint, LinkedCell* LC);45 TesselPoint* FindSecondClosestPoint(const Vector*, LinkedCell*);46 Vector * GetClosestPointBetweenLine(ofstream *out, class BoundaryLineSet *Base, class BoundaryLineSet *OtherBase);47 48 void WriteTecplotFile(ofstream *out, ofstream *tecplot, class Tesselation *TesselStruct, PointCloud *cloud, int N);49 void WriteRaster3dFile(ofstream *out, ofstream *rasterfile, class Tesselation *Tess, PointCloud *cloud);50 void IncludeSphereinRaster3D(ofstream *out, ofstream *rasterfile, class Tesselation *Tess, PointCloud *cloud);51 void WriteVrmlFile(ofstream *out, ofstream *vrmlfile, class Tesselation *Tess, PointCloud *cloud);52 void CalculateConcavityPerBoundaryPoint(ofstream *out, class Tesselation *TesselStruct);53 54 bool CheckListOfBaselines(ofstream *out, Tesselation *TesselStruct);55 56 37 57 38 #endif /* TESSELATIONHELPERS_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.