2007-12-29 19:27:58 +00:00
|
|
|
// math stuff for graphics, from FreePCB
|
|
|
|
|
2011-11-24 17:32:51 +00:00
|
|
|
#ifndef abs
|
2008-05-30 18:06:21 +00:00
|
|
|
#define abs(x) (((x) >=0) ? (x) : (-(x)))
|
2011-11-24 17:32:51 +00:00
|
|
|
#endif
|
2008-05-30 18:06:21 +00:00
|
|
|
|
|
|
|
|
2007-12-29 19:27:58 +00:00
|
|
|
typedef struct PointTag
|
|
|
|
{
|
2010-11-12 16:59:16 +00:00
|
|
|
double X,Y;
|
2008-03-12 11:49:16 +00:00
|
|
|
} PointT;
|
2007-12-29 19:27:58 +00:00
|
|
|
|
|
|
|
typedef struct EllipseTag
|
|
|
|
{
|
2010-11-12 16:59:16 +00:00
|
|
|
PointT Center; /* ellipse center */
|
|
|
|
double xrad, yrad; // radii on x and y
|
|
|
|
double theta1, theta2; // start and end angle for arc
|
2007-12-29 19:27:58 +00:00
|
|
|
} EllipseKH;
|
|
|
|
|
|
|
|
|
|
|
|
// math stuff for graphics
|
2008-05-30 18:06:21 +00:00
|
|
|
bool Quadratic( double a, double b, double c, double *x1, double *x2 );
|
2010-09-20 16:21:47 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
|
|
|
* Function TestLineHit
|
2010-09-20 16:21:47 +00:00
|
|
|
* test for hit on line segment i.e. a point within a given distance from segment
|
|
|
|
* @param xi,yi and xf,yf = the end-points of the line segment
|
|
|
|
* @param dist = maximum distance for hit
|
|
|
|
* @param x, y = point to test coords
|
|
|
|
* @return true if hit (i.e dist < distance between the point and the segment, false if not.
|
|
|
|
*/
|
|
|
|
bool TestLineHit( int xi, int yi, int xf, int yf, int x, int y, double dist );
|
|
|
|
|
2008-05-30 18:06:21 +00:00
|
|
|
int FindLineSegmentIntersection( double a, double b, int xi, int yi, int xf, int yf, int style,
|
2010-11-12 16:59:16 +00:00
|
|
|
double * x1, double * y1, double * x2, double * y2, double * dist=NULL );
|
2008-05-30 18:06:21 +00:00
|
|
|
int FindSegmentIntersections( int xi, int yi, int xf, int yf, int style,
|
2010-11-12 16:59:16 +00:00
|
|
|
int xi2, int yi2, int xf2, int yf2, int style2,
|
|
|
|
double x[]=NULL, double y[]=NULL );
|
2008-05-30 18:06:21 +00:00
|
|
|
bool FindLineEllipseIntersections( double a, double b, double c, double d, double *x1, double *x2 );
|
|
|
|
bool FindVerticalLineEllipseIntersections( double a, double b, double x, double *y1, double *y2 );
|
2010-09-20 16:21:47 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
|
|
|
* Function TestForIntersectionOfStraightLineSegments
|
2010-09-20 16:21:47 +00:00
|
|
|
* Test for intersection of line segments
|
|
|
|
* If lines are parallel, returns false
|
|
|
|
* If true, returns also intersection coords in x, y
|
|
|
|
* if false, returns min. distance in dist (may be 0.0 if parallel)
|
|
|
|
* and coords on nearest point in one of the segments in (x,y)
|
|
|
|
* @param x1i, y1i, x1f, y1f = integer coordinates of the first segment
|
|
|
|
* @param x2i, y2i, x2f, y2f = integer coordinates of the other segment
|
|
|
|
* @param x, y = pointers on 2 integer to store the intersection coordinates (can be NULL)
|
|
|
|
* @param dist = pointeur on a double to store the dist.
|
|
|
|
* @return true if intersect.
|
|
|
|
*/
|
2008-05-30 18:06:21 +00:00
|
|
|
bool TestForIntersectionOfStraightLineSegments( int x1i, int y1i, int x1f, int y1f,
|
2010-11-12 16:59:16 +00:00
|
|
|
int x2i, int y2i, int x2f, int y2f,
|
|
|
|
int * x=NULL, int * y=NULL, double * dist=NULL );
|
2010-09-20 16:21:47 +00:00
|
|
|
|
2007-12-29 19:27:58 +00:00
|
|
|
int GetClearanceBetweenSegments( int x1i, int y1i, int x1f, int y1f, int style1, int w1,
|
2010-11-12 16:59:16 +00:00
|
|
|
int x2i, int y2i, int x2f, int y2f, int style2, int w2,
|
|
|
|
int max_cl, int * x, int * y );
|
2007-12-29 19:27:58 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/**
|
|
|
|
* Function GetPointToLineSegmentDistance
|
2007-12-29 19:27:58 +00:00
|
|
|
* Get distance between line segment and point
|
|
|
|
* @param x,y = point
|
2011-01-01 17:28:21 +00:00
|
|
|
* @param xi,yi, xf,yf = the end-points of the line segment
|
2007-12-29 19:27:58 +00:00
|
|
|
* @return the distance
|
|
|
|
*/
|
|
|
|
double GetPointToLineSegmentDistance( int x, int y, int xi, int yi, int xf, int yf );
|
|
|
|
|
|
|
|
double GetPointToLineDistance( double a, double b, int x, int y, double * xp=NULL, double * yp=NULL );
|
2008-05-30 18:06:21 +00:00
|
|
|
bool InRange( double x, double xi, double xf );
|
2012-04-23 21:56:26 +00:00
|
|
|
|
|
|
|
double Distance( double x1, double y1, double x2, double y2 );
|
|
|
|
|
2008-05-30 18:06:21 +00:00
|
|
|
int GetArcIntersections( EllipseKH * el1, EllipseKH * el2,
|
2010-11-12 16:59:16 +00:00
|
|
|
double * x1=NULL, double * y1=NULL,
|
|
|
|
double * x2=NULL, double * y2=NULL );
|
2007-12-29 19:27:58 +00:00
|
|
|
|