home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 July & August
/
PCWorld_2006-07-08_cd.bin
/
temacd
/
planearcade
/
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;
};