Can someone provide an example of a function that returns the cross product of TWO strong> 2d vectors? I am trying to implement this algorithm .
C code would be great. Thanks.
EDIT: Found another way to do this, which works for 2D and doesn't work easily.
bool tri2d::inTriangle(vec2d pt) { float AB = (pt.y-p1.y)*(p2.x-p1.x) - (pt.x-p1.x)*(p2.y-p1.y); float CA = (pt.y-p3.y)*(p1.x-p3.x) - (pt.x-p3.x)*(p1.y-p3.y); float BC = (pt.y-p2.y)*(p3.x-p2.x) - (pt.x-p2.x)*(p3.y-p2.y); if (AB*BC>0.f && BC*CA>0.f) return true; return false; }
c math vector 2d
user181351
source share