summaryrefslogtreecommitdiffstats
path: root/neofx/collision.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2005-04-22 21:51:02 +0200
committerneoraider <devnull@localhost>2005-04-22 21:51:02 +0200
commitad0845d0bd7ee0f90c4e73de4950656248d98a3d (patch)
treeb4352ecf0d2b3b2ae07c746c7e81c962dd3ceb4e /neofx/collision.h
downloadlibneofx-ad0845d0bd7ee0f90c4e73de4950656248d98a3d.tar
libneofx-ad0845d0bd7ee0f90c4e73de4950656248d98a3d.zip
Libneofx von Libzoom abgespalten
Diffstat (limited to 'neofx/collision.h')
-rw-r--r--neofx/collision.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/neofx/collision.h b/neofx/collision.h
new file mode 100644
index 0000000..ce5ff5f
--- /dev/null
+++ b/neofx/collision.h
@@ -0,0 +1,11 @@
+#ifndef NEOFX_COLLISION_H
+#define NEOFX_COLLISION_H
+
+#include "types.h"
+
+int CollisionPointTriangle(VERTEX, TRIANGLE);
+int CollisionRayTriangle(VERTEX, VECTOR, TRIANGLE, float*);
+int CollisionSphereTriangle(VERTEX, float,TRIANGLE);
+int CollisionMovingSphereTriangle(VERTEX, float, VECTOR, float, TRIANGLE);
+
+#endif