File: plplot_octave_rej.h

package info (click to toggle)
plplot 5.10.0%2Bdfsg2-0.4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 25,792 kB
  • ctags: 13,517
  • sloc: ansic: 83,001; xml: 27,081; ada: 18,878; cpp: 15,966; tcl: 11,651; python: 7,075; f90: 7,058; ml: 6,974; java: 6,665; perl: 5,029; sh: 2,208; makefile: 210; lisp: 75; sed: 25; fortran: 7
file content (127 lines) | stat: -rw-r--r-- 5,481 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//
// jc: this segment of plplot.h was rejected as errors by matwrap,
// but the defined functions are needed.
//
// The rejection occurs because of function pointer arguments
// in the function prototypes.
//


// Draws a contour plot from data in f(nx,ny).  Is just a front-end to
// plfcont, with a particular choice for f2eval and f2eval_data.
//

void c_plcont( PLFLT **f, PLINT nx, PLINT ny, PLINT kx, PLINT lx,
               PLINT ky, PLINT ly, PLFLT *clevel, PLINT nlevel,
               void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
               PLPointer pltr_data ); //%nowrap

// Draws a contour plot using the function evaluator f2eval and data stored
// by way of the f2eval_data pointer.  This allows arbitrary organizations
// of 2d array data to be used.
//

void plfcont( PLFLT ( *f2eval )( PLINT, PLINT, PLPointer ),
              PLPointer f2eval_data,
              PLINT nx, PLINT ny, PLINT kx, PLINT lx,
              PLINT ky, PLINT ly, PLFLT *clevel, PLINT nlevel,
              void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
              PLPointer pltr_data ); //%nowrap

// Plot an image with distortion

void plimagefr( PLFLT **idata, PLINT nx, PLINT ny,
                PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax,
                PLFLT zmin, PLFLT zmax, PLFLT valuemin, PLFLT valuemax,
                void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
                PLPointer pltr_data ); //%nowrap

// plot continental outline in world coordinates

void plmap( void ( *mapform )( PLINT, PLFLT *, PLFLT * ), char *type,
            PLFLT minlong, PLFLT maxlong, PLFLT minlat, PLFLT maxlat ); //%nowrap

// Plot the latitudes and longitudes on the background.

void plmeridians( void ( *mapform )( PLINT, PLFLT *, PLFLT * ),
                  PLFLT dlong, PLFLT dlat,
                  PLFLT minlong, PLFLT maxlong, PLFLT minlat, PLFLT maxlat ); //%nowrap

// Shade region.

void c_plshade( PLFLT **a, PLINT nx, PLINT ny, const char **defined,
                PLFLT left, PLFLT right, PLFLT bottom, PLFLT top,
                PLFLT shade_min, PLFLT shade_max,
                PLINT sh_cmap, PLFLT sh_color, PLINT sh_width,
                PLINT min_color, PLINT min_width,
                PLINT max_color, PLINT max_width,
                void ( *fill )( PLINT, PLFLT *, PLFLT * ), PLINT rectangular,
                void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
                PLPointer pltr_data ); //%nowrap

// multiple plshade, specify number of countours to shade

void c_plshades( PLFLT **a, PLINT nx, PLINT ny, const char **defined,
                 PLFLT left, PLFLT right, PLFLT bottom, PLFLT top,
                 PLFLT *clevel, PLINT nlevel, PLINT fill_width,
                 PLINT cont_color, PLINT cont_width,
                 void ( *fill )( PLINT, PLFLT *, PLFLT * ), PLINT rectangular,
                 void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
                 PLPointer pltr_data ); //%nowrap

// the next one seems to use the C calling convention,
//	but did not work at first, so I will use the proven F calling
//

void plshade1( PLFLT *a, PLINT nx, PLINT ny, const char *defined,
               PLFLT left, PLFLT right, PLFLT bottom, PLFLT top,
               PLFLT shade_min, PLFLT shade_max,
               PLINT sh_cmap, PLFLT sh_color, PLINT sh_width,
               PLINT min_color, PLINT min_width,
               PLINT max_color, PLINT max_width,
               void ( *fill )( PLINT, PLFLT *, PLFLT * ), PLINT rectangular,
               void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
               PLPointer pltr_data ); //%nowrap

void plfshade( PLFLT ( *f2eval )( PLINT, PLINT, PLPointer ),
               PLPointer f2eval_data,
               PLFLT ( *c2eval )( PLINT, PLINT, PLPointer ),
               PLPointer c2eval_data,
               PLINT nx, PLINT ny,
               PLFLT left, PLFLT right, PLFLT bottom, PLFLT top,
               PLFLT shade_min, PLFLT shade_max,
               PLINT sh_cmap, PLFLT sh_color, PLINT sh_width,
               PLINT min_color, PLINT min_width,
               PLINT max_color, PLINT max_width,
               void ( *fill )( PLINT, PLFLT *, PLFLT * ), PLINT rectangular,
               void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
               PLPointer pltr_data ); //%nowrap

// Create 1d stripchart

void c_plstripc( PLINT *id, char *xspec, char *yspec,
                 PLFLT xmin, PLFLT xmax, PLFLT xjump, PLFLT ymin, PLFLT ymax,
                 PLFLT xlpos, PLFLT ylpos,
                 PLINT y_ascl, PLINT acc,
                 PLINT colbox, PLINT collab,
                 PLINT *colline, PLINT *styline, char *legline[],
                 char *labx, char *laby, char *labtop ); //%nowrap

// Plot vector arrows
void c_plvect( PLFLT **u, PLFLT **v, PLINT nx, PLINT ny, PLFLT scale,
               void ( *pltr )( PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer ),
               PLPointer pltr_data ); //%nowrap


// Set the function pointer for the keyboard event handler

void plsKeyEH( void ( *KeyEH )( PLGraphicsIn *, void *, int * ), void *KeyEH_data ); //%nowrap

// Set the function pointer for the (mouse) button event handler

void plsButtonEH( void ( *ButtonEH )( PLGraphicsIn *, void *, int * ),
                  void *ButtonEH_data ); //%nowrap

// Sets an optional user exit handler.

void plsexit( int ( *handler )( char * ) );  //%nowrap