Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tesselationhelpers.hpp

    r08d9595 rb32dbb  
    2020#endif
    2121
    22 #include <iosfwd>
     22#include <gsl/gsl_linalg.h>
     23#include <gsl/gsl_matrix.h>
     24#include <gsl/gsl_multimin.h>
     25#include <gsl/gsl_permutation.h>
     26#include <gsl/gsl_vector.h>
     27
     28#include <iostream>
    2329
    2430#include "defs.hpp"
     
    4147/********************************************** declarations *******************************/
    4248
     49double DetGet(gsl_matrix * const A, const int inPlace);
    4350void GetSphere(Vector * const Center, const Vector &a, const Vector &b, const Vector &c, const double RADIUS);
    4451void GetCenterOfSphere(Vector* const Center, const Vector &a, const Vector &b, const Vector &c, Vector * const NewUmkreismittelpunkt, const Vector* const Direction, const Vector* const AlternativeDirection, const double HalfplaneIndicator, const double AlternativeIndicator, const double alpha, const double beta, const double gamma, const double RADIUS, const double Umkreisradius);
    4552void GetCenterofCircumcircle(Vector * const Center, const Vector &a, const Vector &b, const Vector &c);
    4653double GetPathLengthonCircumCircle(const Vector &CircleCenter, const Vector &CirclePlaneNormal, const double CircleRadius, const Vector &NewSphereCenter, const Vector &OldSphereCenter, const Vector &NormalVector, const Vector &SearchDirection);
     54double MinIntersectDistance(const gsl_vector * x, void *params);
     55bool existsIntersection(const Vector &point1, const Vector &point2, const Vector &point3, const Vector &point4);
    4756double CalculateVolumeofGeneralTetraeder(const Vector &a, const Vector &b, const Vector &c, const Vector &d);
    4857double CalculateAreaofGeneralTriangle(const Vector &A, const Vector &B, const Vector &C);
Note: See TracChangeset for help on using the changeset viewer.