home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2004 November
/
Gamestar_67_2004-11_dvd.iso
/
Hry
/
planearcade.exe
/
tank3.bmp
/
shd.h
< prev
next >
Wrap
C/C++ Source or Header
|
2004-01-24
|
331b
|
31 lines
//vertex
struct Shd_Vertex
{
float P[3]; //pozicia
float N[3]; //normala
float T[2]; //texturovy kordinat
};
//face - triangle
struct Shd_Face
{
Shd_Vertex Vertex[3];
float D;
float Normal[3];
};
//hlaviΦka modelu
struct Shd_Header
{
int Version;
int NumFrames;
int NumFaces;
};