Finite Element Domain Decomposition Library
FEDDLib
Loading...
Searching...
No Matches
digwin.h
1
2typedef struct
3{
4 Window xwin;
5 Display *xdisplay;
6 XWindowAttributes xwa;
7 Pixmap svimage;
8 GC xgc;
9 GC xgc_mono_fill;
10 Pixmap gray[8];
11 int num_fg_colors;
12 int pixel_value_for_color[18];
13 int current_x;
14 int current_y;
15 int current_pixel_value;
16 int current_gray_value;
17 int min_x;
18 int max_x;
19 int min_y;
20 int max_y;
21 int x_border;
22 int y_border;
23 int x_offset;
24 int x_len;
25 float x_scale;
26 int y_offset;
27 int y_len;
28 float y_scale;
29 int next_point;
30 int npolylines;
31 int nstrings;
32 int *npoints;
33 int *polyline_pixel_value;
34 int *polyline_gray_value;
35 int *strlen;
36 int *strflg;
37 int *textx;
38 int *texty;
39 char *strings;
40 XPoint *points;
41} DIGWin;
42
43
Definition digwin.h:3