Changeset 22458
- Timestamp:
- 02/23/18 13:14:46 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/ExpToLevelSetx/ExpToLevelSetxt.cpp
r22456 r22458 47 47 48 48 void ContourToLevelSet(double* dist,double* contourx, double* contoury, int contournods, double* x, double* y, int i0, int i1){/*{{{*/ 49 49 50 double x0,y0; 50 51 double x1,y1; … … 68 69 } 69 70 } 70 double ddistance(double x1,double y1,double x2,double y2){ return sqrt(pow(x2-x1,2)+pow(y2-y1,2)); }71 double ddot(double x1, double y1, double x2, double y2){ return x1*x2+y1*y2; }72 71 double minimum_distance(double x1, double y1, double x2, double y2, double x0, double y0){ 73 /* Return minimum distance between line segment [(x1,y1) (x2,y2)] and point (x0,y0) (v=(x1,y1), w=(x2,y2) and p=(x0,y0)*/ 72 /* Return minimum distance between line segment [(x1,y1) (x2,y2)] and point (x0,y0) 73 * We use the following notations: 74 * segment: v=(x1,y1), w=(x2,y2) 75 * point: p=(x0,y0) 76 */ 74 77 75 78 /*Get segment length square (avoid sqrt) |w-v|^2*/ … … 77 80 78 81 /*segment is single point: v == w*/ 79 if(l2 == 0.) return ddistance(x0,y0,x1,y1);82 if(l2 == 0.) return sqrt(pow(x1-x0,2)+pow(y1-y0,2)); 80 83 81 84 /*Consider the line extending the segment, parameterized as v + t (w - v). 82 We find projection of point p onto the line. 83 It falls where t = [(p-v) . (w-v)] / |w-v|^2*/ 84 double t = ddot(x0-x1,y0-y1, x2-x1, y2-y1) / l2; 85 We find projection of point p onto the line. It falls where t = [(p-v) . (w-v)] / |w-v|^2*/ 86 double t = ((x0-x1)*(x2-x1) + (y0-y1)*(y2-y1)) / l2; 85 87 if(t < 0.){ 86 88 /*Beyond the 'v' end of the segment*/ 87 return ddistance(x0,y0, x1, y1);89 return sqrt(pow(x1-x0,2)+pow(y1-y0,2)); 88 90 } 89 91 else if(t > 1.){ 90 92 /*Beyond the 'w' end of the segment*/ 91 return ddistance(x0,y0, x2,y2);93 return sqrt(pow(x2-x0,2)+pow(y2-y0,2)); 92 94 } 93 95 94 /*Projection falls on segment !*/95 double proj ectionx= x1 + t* (x2-x1);96 double proj ectiony= y1 + t* (y2-y1);97 return ddistance(x0, y0, projectionx, projectiony);96 /*Projection falls on segment*/ 97 double projx= x1 + t* (x2-x1); 98 double projy= y1 + t* (y2-y1); 99 return sqrt(pow(projx-x0,2)+pow(projy-y0,2)); 98 100 } 99 101 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.