home *** CD-ROM | disk | FTP | other *** search
- /* $Revision Header *** Header built automatically - do not edit! ***********
- *
- * (C) Copyright 1991 by Metalworx
- *
- * Name .....: chem_defs.h
- * Created ..: Sat 19-Oct-91 12:42
- * Revision .: 1
- *
- * Date Author Comment
- * ========= ======== ====================
- * 1990 Mtwx Created this file!
- *
- * $Revision Header ********************************************************/
- #define REVISION 1
-
- /***************************************************************************
- * chem_defs.h: enthΣlt Typdefinitionen u.Σ., die in mehreren Files *
- * ben÷tigt werden *
- ***************************************************************************/
-
- 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;
- };
-
- struct ChemPrefs {
- double bv; /* BildverhΣltnis */
- BOOL IconCreaCDM; /* Icons fuer Datenfiles ja/nein (noch nicht benutzt) */
- BOOL IconCreaIFF; /* Icons fuer Bildfiles ja/nein */
- BOOL Title; /* Titelzeile (Screen) ja/nein */
- BOOL TimeWindow; /* Zeit-Info Fenster ja/nein */
- };
-
- #define MAXATOM 500 /* 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 int T_MB[MAXATOM]; /* moegliche Berⁿhrungen*/
-
-