From ad0845d0bd7ee0f90c4e73de4950656248d98a3d Mon Sep 17 00:00:00 2001 From: neoraider Date: Fri, 22 Apr 2005 19:51:02 +0000 Subject: Libneofx von Libzoom abgespalten --- neofx/types.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 neofx/types.h (limited to 'neofx/types.h') diff --git a/neofx/types.h b/neofx/types.h new file mode 100644 index 0000000..130f0f1 --- /dev/null +++ b/neofx/types.h @@ -0,0 +1,28 @@ +#ifndef NEOFX_TYPES_H +#define NEOFX_TYPES_H + +#pragma pack(push, 2) +typedef union _MATRIX { + float m[4][4]; + float f[16]; +} MATRIX; + +typedef struct _VECTOR_VERTEX { + float x, y, z; +} VECTOR, VERTEX; + +typedef struct _TEXCOORDS { + float s, t; +} TEXCOORDS; + +typedef struct _TRIANGLE { + unsigned char type; + unsigned char visible; + VERTEX vertices[3]; + VECTOR normal; + int texture; + TEXCOORDS texcoords[3]; +} TRIANGLE; +#pragma pack(pop) + +#endif -- cgit v1.2.3