summaryrefslogtreecommitdiff
path: root/Runtime/Geometry/TriTriIntersect.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-08-14 22:50:43 +0800
committerchai <chaifix@163.com>2019-08-14 22:50:43 +0800
commit15740faf9fe9fe4be08965098bbf2947e096aeeb (patch)
treea730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/Geometry/TriTriIntersect.h
+Unity Runtime codeHEADmaster
Diffstat (limited to 'Runtime/Geometry/TriTriIntersect.h')
-rw-r--r--Runtime/Geometry/TriTriIntersect.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Runtime/Geometry/TriTriIntersect.h b/Runtime/Geometry/TriTriIntersect.h
new file mode 100644
index 0000000..ef3ecb4
--- /dev/null
+++ b/Runtime/Geometry/TriTriIntersect.h
@@ -0,0 +1,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