summaryrefslogtreecommitdiff
path: root/Runtime/Geometry/TriTriIntersect.h
blob: ef3ecb4d453da5dccb71b5f6681da04b0b69a6a5 (plain)
1
2
3
4
5
6
7
8
9
#ifndef TRITRIINTERSECT_H
#define TRITRIINTERSECT_H

int tri_tri_intersect_with_isectline(
				float V0[3],float V1[3],float V2[3],
				float U0[3],float U1[3],float U2[3],int *coplanar,
				float isectpt1[3],float isectpt2[3]);

#endif