Changeset 22458


Ignore:
Timestamp:
02/23/18 13:14:46 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/ExpToLevelSetx/ExpToLevelSetxt.cpp

    r22456 r22458  
    4747
    4848void ContourToLevelSet(double* dist,double* contourx, double* contoury, int contournods, double* x, double* y, int i0, int i1){/*{{{*/
     49
    4950        double x0,y0;
    5051        double x1,y1;
     
    6869        }
    6970}
    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; }
    7271double 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         */
    7477
    7578   /*Get segment length square (avoid sqrt) |w-v|^2*/
     
    7780
    7881   /*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));
    8083
    8184        /*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;
    8587        if(t < 0.){
    8688      /*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));
    8890   }
    8991        else if(t > 1.){
    9092      /*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));
    9294   }
    9395       
    94    /*Projection falls on segment!*/
    95         double projectionx= x1 + t* (x2-x1);
    96         double projectiony= 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));
    98100}
    99101/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.