Ice Sheet System Model  4.18
Code documentation
GridInsideHole.cpp
Go to the documentation of this file.
1 /*
2  * GridInsideHole.c:
3  * from a convex set of points, figure out a point that for sure lies inside the profile.
4  */
5 
6 #include <math.h>
7 
8 #include "./triangle.h"
9 #include "../Exp/exp.h"
10 
11 #undef M_PI
12 #define M_PI 3.141592653589793238462643
13 
14 int GridInsideHole(double* px0,double* py0,int n,double* x,double* y){
15 
16  double flag=0.0;
17  double xA,xB,xC,xD,xE;
18  double yA,yB,yC,yD,yE;
19 
20  /*Take first and last vertices: */
21  xA=x[0];
22  yA=y[0];
23  xB=x[n-1];
24  yB=y[n-1];
25 
26  /*Figure out middle of segment [A B]: */
27  xC=(xA+xB)/2;
28  yC=(yA+yB)/2;
29 
30  /*D and E are on each side of segment [A B], on the median line between segment [A B],
31  *at an angle of 10 degree (less than the minimum 30 enforced by the quality of the mesh: */
32  xD=xC+tan(10./180.*M_PI)*(yC-yA);
33  yD=yC+tan(10./180.*M_PI)*(xA-xC);
34  xE=xC-tan(10./180.*M_PI)*(yC-yA);
35  yE=yC-tan(10./180.*M_PI)*(xA-xC);
36 
37  /*Either E or D is inside profile (x,y): */
38  IsInPolySerial(&flag,&xD,&yD,1,x,y,n,2);
39  /*FIXME: used to be 'flag' and not '!flag', check*/
40  if(!flag){
41  /*D is inside the poly: */
42  *px0=xD;
43  *py0=yD;
44  }
45  else{
46  /*E is inside the poly: */
47  *px0=xE;
48  *py0=yE;
49  }
50  return 1;
51 }
GridInsideHole
int GridInsideHole(double *px0, double *py0, int n, double *x, double *y)
Definition: GridInsideHole.cpp:14
triangle.h
IsInPolySerial
int IsInPolySerial(double *in, double *xc, double *yc, int numvertices, double *x, double *y, int nods, int edgevalue)
Definition: exp.cpp:45
M_PI
#define M_PI
Definition: GridInsideHole.cpp:12