Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tesselationhelpers.hpp

    r7dea7c rf1cccd  
    1818#endif
    1919
     20#define HULLEPSILON 1e-7
     21
    2022#include <gsl/gsl_linalg.h>
    2123#include <gsl/gsl_matrix.h>
     
    2426#include <gsl/gsl_vector.h>
    2527
    26 #include "defs.hpp"
    27 #include "tesselation.hpp"
    2828#include "vector.hpp"
    29 
    30 #define HULLEPSILON 1e-10
    3129
    3230double DetGet(gsl_matrix *A, int inPlace);
     
    3735double MinIntersectDistance(const gsl_vector * x, void *params);
    3836bool 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 
    5637
    5738#endif /* TESSELATIONHELPERS_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.