summaryrefslogtreecommitdiff
path: root/Runtime/Geometry/TriTriIntersect.h
diff options
context:
space:
mode:
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