/** Find the point at which two infinite lines intersect. The algorithm generates a plane from one of the lines and finds the intersection point between this plane and the other line.
\param P1 A point that lies on the first line
\param T1 Direction vector for the first line
\param P2 A point that lies on the second line
\param T2 Direction vector for the second line
\param Result Returns the intersection between the two lines
\result Returns true iff the lines intersect, false if they are parallel
\note Code originally from Aqsis, http://www.aqsis.com