向量叉積(圖解)

int cross(point &a,point &b,point &c) { int x1=b.x-a.x; int y1=b.y-a.y; int x2=c.x-a.x; int y2=c.y-a.y; return x1*y2-x2*y1; }
相關文章
相關標籤/搜索