Lines Matching refs:Atom
71 Atom atoms[];
75 static final Map<String, Atom> atomTable = new HashMap<String, Atom>();
76 static Atom defaultAtom;
79 atomTable.put("c", new Atom(0, 0, 0));
80 atomTable.put("h", new Atom(210, 210, 210));
81 atomTable.put("n", new Atom(0, 0, 255));
82 atomTable.put("o", new Atom(255, 0, 0));
83 atomTable.put("p", new Atom(255, 0, 255));
84 atomTable.put("s", new Atom(255, 255, 0));
85 atomTable.put("hn", new Atom(150, 255, 150)); /* !!*/
86 defaultAtom = new Atom(255, 100, 200);
157 atoms = new Atom[maxvert];
163 Atom na[] = new Atom[maxvert];
168 Atom a = atomTable.get(name.toLowerCase());
353 Atom.setApplet(this);
503 class Atom {
541 Atom(int Rl, int Gl, int Bl) {