home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
science
/
chemesthetics
/
source
/
chem_defs.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-12-06
|
636b
|
29 lines
typedef struct
{
double x, y, z;
} VEKTOR;
typedef struct
{
char name[3];
int x, y, z;
int r;
} ATOMTYP;
struct Atom
{
char Kurzz[3];
char Name[20];
int Farbe;
};
#define MAXATOM 60 /* Hoechstmoegliche Anzahl von Atomen */
#define ATOMVERGRFAKT 1.5 /* Vergr. der Kalottenradien */
#define BILDSCHIRMABSTAND 6000.0 /* 6100 pm entspricht einem Abstand
des Beobachters vom Bildschirm von
ca. 60 cm, wichtig fuer Berechnung
der Perspektive */
typedef ATOMTYP T_A[MAXATOM]; /* Atome */
typedef int T_MB[MAXATOM]; /* moegliche Berhrungen*/