Ice Sheet System Model  4.18
Code documentation
Macros | Functions
GridInsideHole.cpp File Reference
#include <math.h>
#include "./triangle.h"
#include "../Exp/exp.h"

Go to the source code of this file.

Macros

#define M_PI   3.141592653589793238462643
 

Functions

int GridInsideHole (double *px0, double *py0, int n, double *x, double *y)
 

Macro Definition Documentation

◆ M_PI

#define M_PI   3.141592653589793238462643

Definition at line 12 of file GridInsideHole.cpp.

Function Documentation

◆ GridInsideHole()

int GridInsideHole ( double *  px0,
double *  py0,
int  n,
double *  x,
double *  y 
)

Definition at line 14 of file GridInsideHole.cpp.

14  {
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 }
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