blob: 969e55fe87ec7b62900cb47ff0de7eaaff815632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
bool addAtomType(char* namei, int unused, float radius, float radiusC,
int r, int g, int b);
int getAtomColor(const char* atomicElement);
float getAtomRadius(const char* atomicElement);
float getAtomCovalentRadius(const char* atomicElement);
int getChainColor(int chianIndex);
#define MAX_COVALENT_RADIUS 1.688f
bool readArtFile(const char* filename);
|