File: rgb.h

package info (click to toggle)
psicode 3.4.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 46,416 kB
  • ctags: 18,563
  • sloc: cpp: 291,425; ansic: 12,788; fortran: 10,489; perl: 3,206; sh: 2,702; makefile: 2,205; ruby: 2,178; yacc: 110; lex: 53
file content (32 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*------------------------------------------
  Default RGB colors for atoms

  EV, March 30, 2001
 ------------------------------------------*/

#ifndef _psi_include_rgb_h_
#define _psi_include_rgb_h_

#define LAST_RGB_INDEX 9

#ifdef __cplusplus
extern "C" {
#endif

double atomic_rgb[][3] = { {0.40, 0.40, 0.40},  /* default element or ghost */
                    {1.00, 1.00, 1.00},  /* hydrogen */
		    {0.80, 0.80, 0.50},  /* helium */
		    {0.30, 0.80, 0.30},  /* lithium */
		    {0.65, 0.80, 0.25},  /* berrilium */
		    {0.50, 0.80, 0.15},  /* boron */
		    {0.25, 0.25, 0.25},  /* carbon */
		    {0.00, 0.00, 1.00},  /* nitrogen */
		    {1.00, 0.00, 0.00},  /* oxygen */
		    {0.75, 0.40, 0.15}  /* fluorine */
};

#ifdef __cplusplus
}
#endif

#endif /* header guard */