Changes in src/tesselationhelpers.hpp [f1cccd:7dea7c]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselationhelpers.hpp
rf1cccd r7dea7c 18 18 #endif 19 19 20 #define HULLEPSILON 1e-721 22 20 #include <gsl/gsl_linalg.h> 23 21 #include <gsl/gsl_matrix.h> … … 26 24 #include <gsl/gsl_vector.h> 27 25 26 #include "defs.hpp" 27 #include "tesselation.hpp" 28 28 #include "vector.hpp" 29 30 #define HULLEPSILON 1e-10 29 31 30 32 double DetGet(gsl_matrix *A, int inPlace); … … 35 37 double MinIntersectDistance(const gsl_vector * x, void *params); 36 38 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 37 56 38 57 #endif /* TESSELATIONHELPERS_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.