fixed recent bug with CUDA texture objects
[gromacs.git] / include / writeps.h
blobfa77b554a818b97a8b35d8dfc29b7e384fc6ef96
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012,2013, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
39 #ifndef _writeps_h
40 #define _writeps_h
43 #include <stdio.h>
44 #include "visibility.h"
45 #include "typedefs.h"
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
51 typedef enum {
52 eXCenter, eXLeft, eXRight
53 } eXPos;
55 typedef enum {
56 eYCenter, eYTop, eYBottom
57 } eYPos;
59 enum {
60 efontTIMES, efontTIMESITALIC, efontTIMESBOLD, efontTIMESBOLDITALIC,
61 efontHELV, efontHELVITALIC, efontHELVBOLD, efontHELVBOLDITALIC,
62 efontCOUR, efontCOURITALIC, efontCOURBOLD, efontCOURBOLDITALIC,
63 efontNR
67 typedef struct t_int_psdata *t_psdata;
68 /* Only use t_psdata - it is a pointer to an abstract datatype
69 * that maintains the state of the postscript currently written.
72 extern const char *fontnm[efontNR];
74 GMX_LIBGMX_EXPORT
75 t_psdata ps_open(const char *fn, real x1, real y1, real x2, real y2);
77 GMX_LIBGMX_EXPORT
78 void ps_linewidth(t_psdata ps, int lw);
79 GMX_LIBGMX_EXPORT
80 void ps_color(t_psdata ps, real r, real g, real b);
81 GMX_LIBGMX_EXPORT
82 void ps_rgb(t_psdata ps, t_rgb *rgb);
84 void ps_rgb_box(t_psdata ps, t_rgb *rgb);
85 GMX_LIBGMX_EXPORT
86 void ps_rgb_nbox(t_psdata ps, t_rgb *rgb, real n);
87 GMX_LIBGMX_EXPORT
88 void ps_init_rgb_box(t_psdata ps, real xbox, real ybox);
89 GMX_LIBGMX_EXPORT
90 void ps_init_rgb_nbox(t_psdata ps, real xbox, real ybox);
92 void ps_lineto(t_psdata ps, real x, real y);
93 void ps_linerel(t_psdata ps, real dx, real dy);
95 GMX_LIBGMX_EXPORT
96 void ps_moveto(t_psdata ps, real x, real y);
97 GMX_LIBGMX_EXPORT
98 void ps_moverel(t_psdata ps, real dx, real dy);
100 GMX_LIBGMX_EXPORT
101 void ps_line(t_psdata ps, real x1, real y1, real x2, real y2);
103 GMX_LIBGMX_EXPORT
104 void ps_box(t_psdata ps, real x1, real y1, real x2, real y2);
105 GMX_LIBGMX_EXPORT
106 void ps_fillbox(t_psdata ps, real x1, real y1, real x2, real y2);
108 void ps_arc(t_psdata ps, real x1, real y1, real rad, real a0, real a1);
109 void ps_fillarc(t_psdata ps, real x1, real y1, real rad, real a0, real a1);
110 GMX_LIBGMX_EXPORT
111 void ps_arcslice(t_psdata ps, real xc, real yc,
112 real rad1, real rad2, real a0, real a1);
113 GMX_LIBGMX_EXPORT
114 void ps_fillarcslice(t_psdata ps, real xc, real yc,
115 real rad1, real rad2, real a0, real a1);
117 void ps_circle(t_psdata ps, real x1, real y1, real rad);
119 GMX_LIBGMX_EXPORT
120 void ps_font(t_psdata ps, int font, real size);
121 GMX_LIBGMX_EXPORT
122 void ps_strfont(t_psdata ps, char *font, real size);
124 void ps_text(t_psdata ps, real x1, real y1, const char *str);
125 GMX_LIBGMX_EXPORT
126 void ps_ctext(t_psdata ps, real x1, real y1, const char *str, int expos);
128 GMX_LIBGMX_EXPORT
129 void ps_close(t_psdata ps);
131 GMX_LIBGMX_EXPORT
132 void ps_flip(t_psdata ps, gmx_bool bPlus);
133 /* Rotate over 90 (bPlus) or -90 (!bPlus) degrees */
135 GMX_LIBGMX_EXPORT
136 void ps_rotate(t_psdata ps, real angle);
138 GMX_LIBGMX_EXPORT
139 void ps_translate(t_psdata ps, real x, real y);
141 GMX_LIBGMX_EXPORT
142 void ps_setorigin(t_psdata ps);
143 GMX_LIBGMX_EXPORT
144 void ps_unsetorigin(t_psdata ps);
146 void viewps(char *fn);
148 GMX_LIBGMX_EXPORT
149 void ps_comment(t_psdata ps, const char *s);
151 #ifdef __cplusplus
153 #endif
155 #endif /* _writeps_h */