Skip to content

Commit

Permalink
Merge branch 'develop' into 'master'
Browse files Browse the repository at this point in the history
Merge develop into master

See merge request Scientific-IT-Systems/gr!719
  • Loading branch information
jheinen committed Oct 6, 2021
2 parents d736a32 + 361d3f7 commit 0d34554
Show file tree
Hide file tree
Showing 41 changed files with 8,039 additions and 3,068 deletions.
170 changes: 110 additions & 60 deletions 3rdparty/qhull/geom.c

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions 3rdparty/qhull/geom.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
see qh-geom.htm and geom.c
Copyright (c) 1993-2015 The Geometry Center.
$Id: //main/2015/qhull/src/libqhull/geom.h#1 $$Change: 1981 $
$DateTime: 2015/09/28 20:26:32 $$Author: bbarber $
Copyright (c) 1993-2020 The Geometry Center.
$Id: //main/2019/qhull/src/libqhull/geom.h#2 $$Change: 2953 $
$DateTime: 2020/05/21 22:05:32 $$Author: bbarber $
*/

#ifndef qhDEFgeom
Expand Down Expand Up @@ -111,7 +111,7 @@ void qh_gausselim(realT **rows, int numrow, int numcol, boolT *sign, boolT *n
realT qh_getangle(pointT *vect1, pointT *vect2);
pointT *qh_getcenter(setT *vertices);
pointT *qh_getcentrum(facetT *facet);
realT qh_getdistance(facetT *facet, facetT *neighbor, realT *mindist, realT *maxdist);
coordT qh_getdistance(facetT *facet, facetT *neighbor, coordT *mindist, coordT *maxdist);
void qh_normalize(coordT *normal, int dim, boolT toporient);
void qh_normalize2(coordT *normal, int dim, boolT toporient,
realT *minnorm, boolT *ismin);
Expand All @@ -130,6 +130,7 @@ coordT *qh_copypoints(coordT *points, int numpoints, int dimension);
void qh_crossproduct(int dim, realT vecA[3], realT vecB[3], realT vecC[3]);
realT qh_determinant(realT **rows, int dim, boolT *nearzero);
realT qh_detjoggle(pointT *points, int numpoints, int dimension);
void qh_detmaxoutside(void);
void qh_detroundoff(void);
realT qh_detsimplex(pointT *apex, setT *points, int dim, boolT *nearzero);
realT qh_distnorm(int dim, pointT *point, pointT *normal, realT *offsetp);
Expand All @@ -140,6 +141,8 @@ realT qh_facetarea_simplex(int dim, coordT *apex, setT *vertices,
vertexT *notvertex, boolT toporient, coordT *normal, realT *offset);
pointT *qh_facetcenter(setT *vertices);
facetT *qh_findgooddist(pointT *point, facetT *facetA, realT *distp, facetT **facetlist);
vertexT *qh_furthestnewvertex(unsigned int unvisited, facetT *facet, realT *maxdistp /* qh.newvertex_list */);
vertexT *qh_furthestvertex(facetT *facetA, facetT *facetB, realT *maxdistp, realT *mindistp);
void qh_getarea(facetT *facetlist);
boolT qh_gram_schmidt(int dim, realT **rows);
boolT qh_inthresholds(coordT *normal, realT *angle);
Expand Down Expand Up @@ -168,6 +171,8 @@ void qh_scalepoints(pointT *points, int numpoints, int dim,
boolT qh_sethalfspace(int dim, coordT *coords, coordT **nextp,
coordT *normal, coordT *offset, coordT *feasible);
coordT *qh_sethalfspace_all(int dim, int count, coordT *halfspaces, pointT *feasible);
coordT qh_vertex_bestdist(setT *vertices);
coordT qh_vertex_bestdist2(setT *vertices, vertexT **vertexp, vertexT **vertexp2);
pointT *qh_voronoi_center(int dim, setT *points);

#endif /* qhDEFgeom */
Expand Down
Loading

0 comments on commit 0d34554

Please sign in to comment.