1 
2 /*
3 A* -------------------------------------------------------------------
4 B* This file contains source code for the PyMOL computer program
5 C* copyright 1998-2000 by Warren Lyford Delano of DeLano Scientific.
6 D* -------------------------------------------------------------------
7 E* It is unlawful to modify or remove this copyright notice.
8 F* -------------------------------------------------------------------
9 G* Please see the accompanying LICENSE file for further information.
10 H* -------------------------------------------------------------------
11 I* Additional authors of this source file include:
12 -*
13 -*
14 -*
15 Z* -------------------------------------------------------------------
16 */
17 #ifndef _H_RepMesh
18 #define _H_RepMesh
19 
20 #include"Rep.h"
21 #include"CoordSet.h"
22 #include"CGO.h"
23 
24 Rep *RepMeshNew(CoordSet * cset, int state);
25 
26 #define cRepMesh_by_flags     0
27 #define cRepMesh_all          1
28 #define cRepMesh_heavy_atoms  2
29 
30 #endif
31