1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 #include <dxconfig.h>
10 
11 
12 #ifndef tdmQmesh_h
13 #define tdmQmesh_h
14 /*
15  *
16  * $Header: /src/master/dx/src/exec/hwrender/hwQmesh.h,v 1.3 1999/05/10 15:45:35 gda Exp $
17  */
18 
19 
20 /*
21 ^L
22  *===================================================================
23  *      Structure Definitions and Typedefs
24  *===================================================================
25  */
26 
27 
28 
29 #if defined(alphax)
30 #define MaxQstripSize 60
31 #else
32 #define MaxQstripSize 100
33 #endif
34 #define MinQstripAvg   5
35 
36 
37 #define Down  0
38 #define Up    1
39 #define Left  2
40 #define Right 3
41 
42 typedef struct _Qstrip
43   {
44   int points;
45   int *point;
46   } Qstrip;
47 
48 
49 typedef struct _Qmesh
50   {
51   int qstrips;
52   Qstrip **qstrip;
53   } Qmesh;
54 
55 
56 
57 #endif
58 
59