CC BY 4.0 (除特别声明或转载文章外)
如果这篇博客帮助到你,可以请我喝一杯咖啡~
int main()
{
int t;
for(scanf("%d",&t); t--;)
{
Coord3 p[6];
for(int i=0; i<6; ++i)
scanf("%lf%lf%lf",&p[i].X,&p[i].Y,&p[i].Z);
printf("%d\n",TriTriIntersection(p,p+3));
}
}
int main()
{
int t;
for(scanf("%d",&t); t--;)
{
Coord3 p[6];
for(int i=0; i<6; ++i)
scanf("%lf%lf%lf",&p[i].X,&p[i].Y,&p[i].Z);
printf("%d\n",TriTriIntersection(p,p+3));
}
}