point* inter( point p1, point p2, point p3, point p4)
{
point* r;
//p1-p2 is the first edge.
//p3-p4 is the second edge.
r = new point;
As others have already commented, the above can/will leak memory. Better use a smart pointer, e.g. std::auto_ptr.
float x1 = p1.x, x2 = p2.x, x3 = p3.x, x4 = p4.x;
float y1 = p1.y, y2 = p2.y, y3 = p3.y, y4 = p4.y;
//I do not understand what this d represents.
float d = (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4);
First you need to know about dot product of two vectors.
Let X and Y be vectors of length 1 in the directions of x-axis and y-axis, respectively. Then define X*X = 1, Y*Y = 1, and X*Y = 0, which is a kind of multiplication (or just an operation) yielding the length of the projection of one vector onto the other, times the other's length (or in other words, the product of the lengths of the vectors times cosine of angle between them). Then if two vectors a and b are a = a.x*X + a.y*Y and b = b.x*X + b.y*Y, then a*b = a.x*b.x + a.y*b.y, because those terms with X*Y are zero, dropping out.
And amazingly that generalization yields the lengths of the vectors times cosine of angle between them for vectors in arbitrary directions, which means for parallel vectors, the product of their lengths, and for perpendicular vectors, 0. :-)
Let edge1 = p1-p2, and edge2 = p3-p4. Then the above computes edge1.x*edge2.y - edge1.y*edge2.x = [edge1.x, edge1.y]*[edge2.y, -edge2.x]. The latter vector is edge2 rotated 90 degrees. Now if that rotated edge2 is perpendicular to edge1 then edge1 and edge2 must be parallel and can't intersect. And in that case this dot product is 0.
// If d is zero, there is no intersection
if (d == 0) return NULL;
// I do not understand what this pre and pos means and
// how it's used to get the x and y of the intersection
float pre = (x1*y2 - y1*x2), pos = (x3*y4 - y3*x4);
float x = ( pre * (x3 - x4) - (x1 - x2) * pos ) / d;
float y = ( pre * (y3 - y4) - (y1 - y2) * pos ) / d;
// Check if the x and y coordinates are within both lines
if ( x < min(x1, x2) || x > max(x1, x2) ||
x < min(x3, x4) || x > max(x3, x4) ) return NULL;
if ( y < min(y1, y2) || y > max(y1, y2) ||
y < min(y3, y4) || y > max(y3, y4) ) return NULL;
cout << "Inter X : " << x << endl;
cout << "Inter Y : " << y << endl;
// Return the point of intersection
r->x = x;
r->y = y;
return r;
}
Oh dear. I don't feel like analyzing that... But if it works, then it's solving set of two equations in two unknowns to determine intersection point of the infinite lines through the edges, then checking whether that intersection point is within edges.
Cheers & hth.,
point* r; /* ... */ r = new point; /* ... */ if (d == 0) return NULL;Can you spot the memory leak? If you were using smart pointers, you wouldn't have to worry about this. (Also, you usually shouldn't compare computed floating point values for equality; you should check for approximate equality to allow for error in the calculations). – James McNellis Nov 9 '10 at 1:41pointevery time your lines don't intersect. – cHao Nov 9 '10 at 1:42pointvianew, just allocate apointon the stack and return that. It will be much faster to allocate apointon the stack than allocating apointvianew, especially ifinter()is going to be called frequently. – In silico Nov 9 '10 at 1:48