4 private import std.string;
5 private import std.array;
6 private import std.algorithm;
7 private import std.stdio;
8 private import std.conv;
43 size_t ny = a[0].length;
46 for (
size_t i = 0; i <
nx; i++ )
48 assert( ny == a[i].length,
"convert_array(): Array must be 2 dimensional!" );
58 char*[] c_args =
new char*[args.length];
59 foreach (
size_t i,
char[] arg; args )
60 c_args[i] = cast(
char *) toStringz( arg );
61 int argc = cast(
int) c_args.length;
70 assert( nx == v.length,
"plvect(): Arrays must be of same length!" );
71 assert( ny == v[0].length,
"plvect(): Arrays must be of same length!" );
80 assert( nx == v.length,
"plvect(): Arrays must be of same length!" );
81 assert( ny == v[0].length,
"plvect(): Arrays must be of same length!" );
85 c.nx = cast(
PLINT) cgrid.xg.length;
87 c.ny = cast(
PLINT) cgrid.yg.length;
89 c.nz = cast(
PLINT) cgrid.zg.length;
98 assert( nx == v.length,
"plvect(): Arrays must be of same length!" );
99 assert( ny == v[0].length,
"plvect(): Arrays must be of same length!" );
105 c2.nx = cast(
PLINT) cgrid2.xg.length;
106 c2.ny = cast(
PLINT) cgrid2.xg[0].length;
109 assert( c2.nx == cgrid2.yg.length,
"plvect(): Arrays must be of same length!" );
110 assert( c2.ny == cgrid2.yg[0].length,
"plvect(): Arrays must be of same length!" );
114 assert( c2.nx == cgrid2.zg.length,
"plvect(): Arrays must be of same length!" );
115 assert( c2.ny == cgrid2.zg[0].length,
"plvect(): Arrays must be of same length!" );
124 assert( npts == arrowy.length,
"plsvect(): Arrays must be of same length!" );
125 c_plsvect( arrowx.ptr, arrowy.ptr, npts, fill );
133 c_plaxes( x0, y0, toStringz( xopt ), xtick, nxsub, toStringz( yopt ), ytick, nysub );
140 assert( nbin == y.length,
"plbin(): Arrays must be of same length!" );
141 c_plbin( nbin, x.ptr, y.ptr, opt );
147 c_plbox( toStringz( xopt ), xtick, nxsub, toStringz( yopt ), ytick, nysub );
152 string yopt,
string ylabel,
PLFLT ytick,
PLINT nsuby,
153 string zopt,
string zlabel,
PLFLT ztick,
PLINT nsubz )
155 c_plbox3( toStringz( xopt ), toStringz( xlabel ), xtick, nsubx,
156 toStringz( yopt ), toStringz( ylabel ), ytick, nsuby,
157 toStringz( zopt ), toStringz( zlabel ), ztick, nsubz );
181 c.nx = cast(
PLINT) cgrid.xg.length;
183 c.ny = cast(
PLINT) cgrid.yg.length;
185 c.nz = cast(
PLINT) cgrid.zg.length;
201 c2.nx = cast(
PLINT) cgrid2.xg.length;
202 c2.ny = cast(
PLINT) cgrid2.xg[0].length;
205 assert( c2.nx == cgrid2.yg.length,
"plcont(): Arrays must be of same length!" );
206 assert( c2.ny == cgrid2.yg[0].length,
"plcont(): Arrays must be of same length!" );
210 assert( c2.nx == cgrid2.zg.length,
"plcont(): Arrays must be of same length!" );
211 assert( c2.ny == cgrid2.zg[0].length,
"plcont(): Arrays must be of same length!" );
228 assert( n == xmin.length,
"plerrx(): Arrays must be of same length!" );
229 assert( n == xmax.length,
"plerrx(): Arrays must be of same length!" );
230 c_plerrx( n, xmin.ptr, xmax.ptr, y.ptr );
237 assert( n == ymin.length,
"plerry(): Arrays must be of same length!" );
238 assert( n == ymax.length,
"plerry(): Arrays must be of same length!" );
239 c_plerry( n, x.ptr, ymin.ptr, ymax.ptr );
246 assert( n == y.length,
"plfill(): Arrays must be of same length!" );
254 assert( n == y.length,
"plfill3(): Arrays must be of same length!" );
255 assert( n == z.length,
"plfill3(): Arrays must be of same length!" );
264 p_dev = to!string( cdev.ptr );
272 fnam = to!string( cfnam.ptr );
279 assert( n == y.length,
"plgradient(): Arrays must be of same length!" );
287 assert( npts == y.length,
"plgriddata(): Arrays must be of same length!" );
288 assert( npts == z.length,
"plgriddata(): Arrays must be of same length!" );
292 assert( nxg == zg.length,
"plgriddata(): Arrays must be of same length!" );
293 assert( nyg == zg[0].length,
"plgriddata(): Arrays must be of same length!" );
295 c_plgriddata( x.ptr, y.ptr, z.ptr, npts, xg.ptr, nxg, yg.ptr, nyg,
convert_array( zg ), type, data );
303 p_ver = to!string( cver.ptr );
309 c_plhist( cast(
PLINT) data.length, data.ptr, datmin, datmax, nbin, opt );
313 void pllab(
string xlabel,
string ylabel,
string tlabel )
315 c_pllab( toStringz( xlabel ), toStringz( ylabel ), toStringz( tlabel ) );
325 PLFLT text_justification,
332 PLINT[] symbol_numbers,
string[] symbols )
335 immutable(
char ) * *textz = array( map!toStringz( text ) ).ptr;
336 immutable(
char ) * *symbolsz = array( map!toStringz( symbols ) ).ptr;
337 assert( nlegend == text_colors.length,
"pllegend(): Arrays must be of same length!" );
338 assert( nlegend == text.length,
"pllegend(): Arrays must be of same length!" );
339 assert( nlegend == box_colors.length,
"pllegend(): Arrays must be of same length!" );
340 assert( nlegend == box_patterns.length,
"pllegend(): Arrays must be of same length!" );
341 assert( nlegend == box_scales.length,
"pllegend(): Arrays must be of same length!" );
342 assert( nlegend == box_line_widths.length,
"pllegend(): Arrays must be of same length!" );
343 assert( nlegend == line_colors.length,
"pllegend(): Arrays must be of same length!" );
344 assert( nlegend == line_styles.length,
"pllegend(): Arrays must be of same length!" );
345 assert( nlegend == line_widths.length,
"pllegend(): Arrays must be of same length!" );
346 assert( nlegend == symbol_colors.length,
"pllegend(): Arrays must be of same length!" );
347 assert( nlegend == symbol_scales.length,
"pllegend(): Arrays must be of same length!" );
348 assert( nlegend == symbol_numbers.length,
"pllegend(): Arrays must be of same length!" );
349 assert( nlegend == symbols.length,
"pllegend(): Arrays must be of same length!" );
351 opt, position, x, y, plot_width,
352 bg_color, bb_color, bb_style,
354 nlegend, opt_array.ptr,
355 text_offset, text_scale, text_spacing,
357 text_colors.ptr, textz,
358 box_colors.ptr, box_patterns.ptr,
359 box_scales.ptr, box_line_widths.ptr,
360 line_colors.ptr, line_styles.ptr,
362 symbol_colors.ptr, symbol_scales.ptr,
363 symbol_numbers.ptr, symbolsz );
370 assert( n == y.length,
"plline(): Arrays must be of same length!" );
378 assert( n == y.length,
"plline3(): Arrays must be of same length!" );
379 assert( n == z.length,
"plline3(): Arrays must be of same length!" );
387 c_plmap( mapform, toStringz( type ), minlong, maxlong, minlat, maxlat );
396 assert( nx == x.length,
"plmesh(): Arrays must be of same length!" );
397 assert( ny == y.length,
"plmesh(): Arrays must be of same length!" );
408 assert( nx == x.length,
"plmeshc(): Arrays must be of same length!" );
409 assert( ny == y.length,
"plmeshc(): Arrays must be of same length!" );
417 c_plmtex( toStringz( side ), disp, pos, just, toStringz( text ) );
423 c_plmtex3( toStringz( side ), disp, pos, just, toStringz( text ) );
432 assert( nx == x.length,
"plot3d(): Arrays must be of same length!" );
433 assert( ny == y.length,
"plot3d(): Arrays must be of same length!" );
444 assert( nx == x.length,
"plot3dc(): Arrays must be of same length!" );
445 assert( ny == y.length,
"plot3dc(): Arrays must be of same length!" );
458 assert( nx == x.length,
"plot3dcl(): Arrays must be of same length!" );
459 assert( ny == y.length,
"plot3dcl(): Arrays must be of same length!" );
462 ixstart, ixn, indexymin.ptr, indexymax.ptr );
469 assert( nlin == del.length,
"plpat(): Arrays must be of same length!" );
470 c_plpat( nlin, inc.ptr, del.ptr );
477 assert( n == y.length,
"plpoin(): Arrays must be of same length!" );
485 assert( n == y.length,
"plpoin3(): Arrays must be of same length!" );
486 assert( n == z.length,
"plpoin3(): Arrays must be of same length!" );
487 c_plpoin3( n, x.ptr, y.ptr, z.ptr, code );
494 assert( n == y.length,
"plstring(): Arrays must be of same length!" );
495 c_plstring( n, x.ptr, y.ptr, toStringz( text ) );
502 assert( n == y.length,
"plstring3(): Arrays must be of same length!" );
503 assert( n == z.length,
"plstring3(): Arrays must be of same length!" );
504 c_plstring3( n, x.ptr, y.ptr, z.ptr, toStringz( text ) );
511 assert( n == y.length,
"plpoly3(): Arrays must be of same length!" );
512 assert( n == z.length,
"plpoly3(): Arrays must be of same length!" );
513 assert( n - 1 == draw.length,
"plpoly3(): Array draw must be of same length then other arrays minus 1!" );
514 c_plpoly3( n, x.ptr, y.ptr, z.ptr, draw.ptr, ifcc );
520 c_plptex( x, y, dx, dy, just, toStringz( text ) );
527 c_plptex3( wx, wy, wz, dx, dy, dz, sx, sy, sz, just, toStringz( text ) );
539 c_plspal1( toStringz( filename ), interpolate );
546 assert( ncol0 == g.length,
"plscmap0(): Arrays must be of same length!" );
547 assert( ncol0 == b.length,
"plscmap0(): Arrays must be of same length!" );
555 assert( ncol0 == g.length,
"plscmap0a(): Arrays must be of same length!" );
556 assert( ncol0 == b.length,
"plscmap0a(): Arrays must be of same length!" );
557 assert( ncol0 == a.length,
"plscmap0a(): Arrays must be of same length!" );
565 assert( ncol1 == g.length,
"plscmap1(): Arrays must be of same length!" );
566 assert( ncol1 == b.length,
"plscmap1(): Arrays must be of same length!" );
574 assert( ncol1 == g.length,
"plscmap1a(): Arrays must be of same length!" );
575 assert( ncol1 == b.length,
"plscmap1a(): Arrays must be of same length!" );
576 assert( ncol1 == a.length,
"plscmap1a(): Arrays must be of same length!" );
586 assert( npts == coord1.length,
"plscmap1l(): Arrays must be of same length!" );
587 assert( npts == coord2.length,
"plscmap1l(): Arrays must be of same length!" );
588 assert( npts == coord3.length,
"plscmap1l(): Arrays must be of same length!" );
589 if ( alt_hue_path != null )
591 assert( npts - 1 == alt_hue_path.length,
"plscmap1l(): Array alt_hue_path must be of same length then other arrays minus 1!" );
592 c_plscmap1l( itype, npts, intensity.ptr, coord1.ptr, coord2.ptr, coord3.ptr, alt_hue_path.ptr );
595 c_plscmap1l( itype, npts, intensity.ptr, coord1.ptr, coord2.ptr, coord3.ptr, null );
606 assert( npts == coord1.length,
"plscmap1la(): Arrays must be of same length!" );
607 assert( npts == coord2.length,
"plscmap1la(): Arrays must be of same length!" );
608 assert( npts == coord3.length,
"plscmap1la(): Arrays must be of same length!" );
609 assert( npts == a.length,
"plscmap1la(): Arrays must be of same length!" );
610 if ( alt_hue_path != null )
612 assert( npts - 1 == alt_hue_path.length,
"plscmap1la(): Array alt_hue_path must be of same length then other arrays minus 1!" );
613 c_plscmap1la( itype, npts, intensity.ptr, coord1.ptr, coord2.ptr, coord3.ptr, a.ptr, alt_hue_path.ptr );
616 c_plscmap1la( itype, npts, intensity.ptr, coord1.ptr, coord2.ptr, coord3.ptr, a.ptr, null );
641 c_plshade(
convert_array( a ), nx, ny, defined, left, right, bottom, top, shade_min, shade_max, sh_cmap,
642 sh_color, sh_width, min_color, min_width, max_color, max_width, &
c_plfill,
643 rectangular,
pltr, pltr_data );
653 c_plshades(
convert_array( a ), nx, ny, defined, xmin, xmax, ymin, ymax, clevel.ptr, cast(
PLINT) clevel.length,
654 fill_width, cont_color, cont_width, &
c_plfill, rectangular,
pltr, pltr_data );
666 c.nx = cast(
PLINT) cgrid.xg.length;
668 c.ny = cast(
PLINT) cgrid.yg.length;
670 c.nz = cast(
PLINT) cgrid.zg.length;
672 c_plshades(
convert_array( a ), nx, ny, defined, xmin, xmax, ymin, ymax, clevel.ptr, cast(
PLINT) clevel.length,
673 fill_width, cont_color, cont_width, &
c_plfill, rectangular, &
pltr1, &c );
687 c2.nx = cast(
PLINT) cgrid2.xg.length;
688 c2.ny = cast(
PLINT) cgrid2.xg[0].length;
691 assert( c2.nx == cgrid2.yg.length,
"plcont(): Arrays must be of same length!" );
692 assert( c2.ny == cgrid2.yg[0].length,
"plcont(): Arrays must be of same length!" );
696 assert( c2.nx == cgrid2.zg.length,
"plcont(): Arrays must be of same length!" );
697 assert( c2.ny == cgrid2.zg[0].length,
"plcont(): Arrays must be of same length!" );
700 c_plshades(
convert_array( a ), nx, ny, defined, xmin, xmax, ymin, ymax, clevel.ptr, cast(
PLINT) clevel.length,
701 fill_width, cont_color, cont_width, &
c_plfill, rectangular, &
pltr2, &c2 );
707 c_plstart( toStringz( devname ), nx, ny );
714 string labx,
string laby,
string labtop )
716 assert( 4 == colline.length,
"plstripc(): Arrays must be of length 4!" );
717 assert( 4 == styline.length,
"plstripc(): Arrays must be of length 4!" );
718 assert( 4 == legline.length,
"plstripc(): Arrays must be of length 4!" );
720 immutable(
char ) * *leglinez = array( map!toStringz( legline ) ).ptr;
726 c_plstripc(
id, toStringz( xspec ), toStringz( yspec ), xmin, xmax, xjump, ymin, ymax,
727 xlpos, ylpos, y_ascl, acc, colbox, collab, colline.ptr, styline.ptr, leglinez,
728 toStringz( labx ), toStringz( laby ), toStringz( labtop ) );
740 valuemin, valuemax,
pltr, pltr_data );
752 c.nx = cast(
PLINT) cgrid.
xg.length;
754 c.ny = cast(
PLINT) cgrid.
yg.length;
756 c.nz = cast(
PLINT) cgrid.
zg.length;
759 valuemin, valuemax, &
pltr1, &c );
773 c2.nx = cast(
PLINT) cgrid2.
xg.length;
774 c2.ny = cast(
PLINT) cgrid2.
xg[0].length;
777 assert( c2.nx == cgrid2.
yg.length,
"plcont(): Arrays must be of same length!" );
778 assert( c2.ny == cgrid2.
yg[0].length,
"plcont(): Arrays must be of same length!" );
782 assert( c2.nx == cgrid2.
zg.length,
"plcont(): Arrays must be of same length!" );
783 assert( c2.ny == cgrid2.
zg[0].length,
"plcont(): Arrays must be of same length!" );
787 valuemin, valuemax, &
pltr2, &c2 );
798 c_plimage(
convert_array( idata ), nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dxmax,
806 assert( nms == space.length,
"plstyl(): Arrays must be of same length!" );
807 c_plstyl( nms, mark.ptr, space.ptr );
815 assert( nx == x.length,
"plsurf3d(): Arrays must be of same length!" );
816 assert( ny == y.length,
"plsurf3d(): Arrays must be of same length!" );
831 assert( nx == x.length,
"plsurf3d(): Arrays must be of same length!" );
832 assert( ny == y.length,
"plsurf3d(): Arrays must be of same length!" );
835 ixstart, ixn, indexymin.ptr, indexymax.ptr );
842 assert( n == y.length,
"plsym(): Arrays must be of same length!" );
843 c_plsym( n, x.ptr, y.ptr, code );
912 return c_plsetopt( toStringz( opt ), toStringz( optarg ) );
1083 int function(
char *,
char *,
void * ) handler;
1517 const char *yopt,
PLFLT ytick,
PLINT nysub );
1535 void c_plbox3(
const char *xopt,
const char *xlabel,
PLFLT xtick,
PLINT nsubx,
const char *yopt,
1536 const char *ylabel,
PLFLT ytick,
PLINT nsuby,
const char *zopt,
const char *zlabel,
1753 void c_pllab(
const char *xlabel,
const char *ylabel,
const char *tlabel );
1794 PLFLT text_justification,
1801 PLINT *symbol_numbers,
const char **symbols );
1907 void c_plptex3(
PLFLT wx,
PLFLT wy,
PLFLT wz,
PLFLT dx,
PLFLT dy,
PLFLT dz,
PLFLT sx,
PLFLT sy,
PLFLT sz,
PLFLT just,
const char *
text );
1979 void c_plsdev(
const char *devname );
2035 void plfshade(
PLFLT function(
PLINT,
PLINT,
PLPointer ) f2eval,
PLPointer f2eval_data,
PLFLT function(
PLINT,
PLINT,
PLPointer ) c2eval,
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,
PLFLT sh_width,
PLINT min_color,
PLFLT min_width,
PLINT max_color,
PLFLT max_width,
void function(
PLINT,
PLFLT *,
PLFLT * ) fill,
PLBOOL rectangular,
void function(
PLFLT,
PLFLT,
PLFLT *,
PLFLT *,
PLPointer )
pltr,
PLPointer pltr_data );
2090 void c_plstripc(
PLINT *
id,
const char *xspec,
const char *yspec,
PLFLT xmin,
PLFLT xmax,
PLFLT xjump,
PLFLT ymin,
PLFLT ymax,
PLFLT xlpos,
PLFLT ylpos,
PLBOOL y_ascl,
PLBOOL acc,
PLINT colbox,
PLINT collab,
PLINT *colline,
PLINT *styline,
const char **legline,
const char *labx,
const char *laby,
const char *labtop );
2164 void c_plw3d(
PLFLT basex,
PLFLT basey,
PLFLT height,
PLFLT xmin0,
PLFLT xmax0,
PLFLT ymin0,
PLFLT ymax0,
PLFLT zmin0,
PLFLT zmax0,
PLFLT alt,
PLFLT az );
2183 void plgFileDevs(
char ***p_menustr,
char ***p_devname,
int *p_ndev );
2187 void plgDevs(
char ***p_menustr,
char ***p_devname,
int *p_ndev );
2199 void plsbopH(
void function(
void *,
int * ) handler,
void *handler_data );
2203 void plseopH(
void function(
void *,
int * ) handler,
void *handler_data );
2211 void plsexit(
int function(
const char * ) handler );
2215 void plsabort(
void function(
const char * ) handler );
2270 void plSetUsage(
const char *program_string,
const char *usage_string );
2277 int plSetOpt(
const char *
opt,
const char *optarg );
2290 void plgesc(
char *p_esc );
2307 void plGetName(
const char *dir,
const char *subdir,
const char *filename,
char **filespec );
void c_plaxes(PLFLT x0, PLFLT y0, const char *xopt, PLFLT xtick, PLINT nxsub, const char *yopt, PLFLT ytick, PLINT nysub)
void c_plgfam(PLINT *p_fam, PLINT *p_num, PLINT *p_bmax)
subroutine plbox(xopt, xtick, nxsub, yopt, ytick, nysub)
void c_plconfigtime(PLFLT scale, PLFLT offset1, PLFLT offset2, PLINT ccontrol, PLBOOL ifbtime_offset, PLINT year, PLINT month, PLINT day, PLINT hour, PLINT min, PLFLT sec)
alias c_plgdidev plgdidev
void plsym(PLFLT[] x, PLFLT[] y, PLINT code)
void c_pl_setcontlabelformat(PLINT lexp, PLINT sigdig)
void c_plptex3(PLFLT wx, PLFLT wy, PLFLT wz, PLFLT dx, PLFLT dy, PLFLT dz, PLFLT sx, PLFLT sy, PLFLT sz, PLFLT just, const char *text)
void c_plscmap1l(PLBOOL itype, PLINT npts, PLFLT *intensity, PLFLT *coord1, PLFLT *coord2, PLFLT *coord3, PLBOOL *alt_hue_path)
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)
void c_plgcolbga(PLINT *r, PLINT *g, PLINT *b, PLFLT *a)
#define PL_PARSE_NOPROGRAM
void c_plgchr(PLFLT *p_def, PLFLT *p_ht)
void c_plsfci(PLUNICODE fci)
void c_plpsty(PLINT patt)
void c_plssym(PLFLT def, PLFLT scale)
void c_plmkstrm(PLINT *p_strm)
#define PLESC_DOUBLEBUFFERING_ENABLE
int c_plparseopts(int *p_argc, const char **argv, PLINT mode)
void pldid2pc(PLFLT *xmin, PLFLT *ymin, PLFLT *xmax, PLFLT *ymax)
#define PLESC_DOUBLEBUFFERING_QUERY
void plshade(PLFLT[][] a, def_func defined, PLFLT left, PLFLT right, PLFLT bottom, PLFLT top, PLFLT shade_min, PLFLT shade_max, PLINT sh_cmap, PLFLT sh_color, PLFLT sh_width, PLINT min_color, PLFLT min_width, PLINT max_color, PLFLT max_width, PLBOOL rectangular, pltr_func pltr=null, PLPointer pltr_data=null)
void c_plsmin(PLFLT def, PLFLT scale)
void c_plstripd(PLINT id)
void c_plscol0a(PLINT icol0, PLINT r, PLINT g, PLINT b, PLFLT a)
alias c_plgdiplt plgdiplt
void c_plgver(char *p_ver)
int plTranslateCursor(PLGraphicsIn *gin)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT PLINT PLFLT PLFLT PLINT PLFLT PLINT const PLINT const char *const PLINT nx
void c_plstripc(PLINT *id, const char *xspec, const char *yspec, PLFLT xmin, PLFLT xmax, PLFLT xjump, PLFLT ymin, PLFLT ymax, PLFLT xlpos, PLFLT ylpos, PLBOOL y_ascl, PLBOOL acc, PLINT colbox, PLINT collab, PLINT *colline, PLINT *styline, const char **legline, const char *labx, const char *laby, const char *labtop)
int plMergeOpts(PLOptionTable *options, const char *name, const char **notes)
void c_plgdidev(PLFLT *p_mar, PLFLT *p_aspect, PLFLT *p_jx, PLFLT *p_jy)
void c_plsstrm(PLINT strm)
subroutine plmtex3(side, disp, pos, xjust, text)
void c_plcol0(PLINT icol0)
void c_plcont(PLFLT **f, PLINT nx, PLINT ny, PLINT kx, PLINT lx, PLINT ky, PLINT ly, PLFLT *clevel, PLINT nlevel, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
void c_plscmap1la(PLBOOL itype, PLINT npts, PLFLT *intensity, PLFLT *coord1, PLFLT *coord2, PLFLT *coord3, PLFLT *a, PLBOOL *alt_hue_path)
void c_plspause(PLBOOL pause)
void c_plot3dc(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLFLT *clevel, PLINT nlevel)
void c_plenv(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLINT just, PLINT axis)
alias c_plreplot plreplot
#define PLESC_DOUBLEBUFFERING
void mapform(PLINT n, PLFLT *x, PLFLT *y)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT bb_color
void c_plline3(PLINT n, PLFLT *x, PLFLT *y, PLFLT *z)
void PLFLT PLINT PLINT position
void c_plhlsrgb(PLFLT h, PLFLT l, PLFLT s, PLFLT *p_r, PLFLT *p_g, PLFLT *p_b)
void c_plscompression(PLINT compression)
subroutine plstring3(x, y, z, string)
void c_plot3dcl(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLFLT *clevel, PLINT nlevel, PLINT ixstart, PLINT ixn, PLINT *indexymin, PLINT *indexymax)
void plgriddata(PLFLT *x, PLFLT *y, PLFLT *z, int npts, PLFLT *xg, int nptsx, PLFLT *yg, int nptsy, PLFLT **zg, int type, PLFLT data)
void plshades(PLFLT[][] a, def_func defined, PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT[] clevel, PLFLT fill_width, PLINT cont_color, PLFLT cont_width, PLBOOL rectangular, ref PLcGrid2 cgrid2)
alias plMinMax2dGrid MinMax2dGrid
void c_plstring(PLINT n, PLFLT *x, PLFLT *y, const char *text)
void pltr2f(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *pltr_data)
void plseopH(void function(void *, int *) handler, void *handler_data)
void plpoin(PLFLT[] x, PLFLT[] y, PLINT code)
void c_plschr(PLFLT def, PLFLT scale)
void plstripc(PLINT *id, string xspec, string yspec, PLFLT xmin, PLFLT xmax, PLFLT xjump, PLFLT ymin, PLFLT ymax, PLFLT xlpos, PLFLT ylpos, PLBOOL y_ascl, PLBOOL acc, PLINT colbox, PLINT collab, PLINT[] colline, PLINT[] styline, string[] legline, string labx, string laby, string labtop)
void c_plszax(PLINT digmax, PLINT digits)
void(* pltr_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
void c_plot3d(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLBOOL side)
alias c_plsdiori plsdiori
void plimage(PLFLT **data, PLINT nx, PLINT ny, PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT zmin, PLFLT zmax, PLFLT Dxmin, PLFLT Dxmax, PLFLT Dymin, PLFLT Dymax)
void plmesh(PLFLT[] x, PLFLT[] y, PLFLT[][] z, PLINT opt)
char * plFindCommand(const char *fn)
subroutine plmtex(side, disp, pos, xjust, text)
void c_plgcompression(PLINT *compression)
void plline(PLFLT[] x, PLFLT[] y)
alias c_plscmap1n plscmap1n
void plFree2dGrid(PLFLT **f, PLINT nx, PLINT ny)
void c_plsmaj(PLFLT def, PLFLT scale)
void c_plmeshc(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLFLT *clevel, PLINT nlevel)
void c_plwidth(PLFLT width)
alias c_plcpstrm plcpstrm
void c_plscmap1n(PLINT ncol1)
void c_plgradient(PLINT n, PLFLT *x, PLFLT *y, PLFLT angle)
subroutine plstring(x, y, string)
void c_plspal0(const char *filename)
void plscmap0a(PLINT[] r, PLINT[] g, PLINT[] b, PLFLT[] a)
alias c_plhlsrgb plhlsrgb
void c_plarc(PLFLT x, PLFLT y, PLFLT a, PLFLT b, PLFLT angle1, PLFLT angle2, PLFLT rotate, PLBOOL fill)
alias c_pl_setcontlabelformat pl_setcontlabelformat
#define PL_FCI_HEXPOWER_MASK
alias c_plfontld plfontld
#define PL_PARSE_NODELETE
void c_plstransform(ct_func coordinate_transform=null, PLPointer coordinate_transform_data=null)
#define PL_FCI_IMPOSSIBLE
void c_plscmap0a(PLINT *r, PLINT *g, PLINT *b, PLFLT *a, PLINT ncol0)
void plSetUsage(const char *program_string, const char *usage_string)
void plmap(mapform_func mapform, string type, PLFLT minlong, PLFLT maxlong, PLFLT minlat, PLFLT maxlat)
alias c_plfamadv plfamadv
void c_plscol0(PLINT icol0, PLINT r, PLINT g, PLINT b)
void plsbopH(void function(void *, int *) handler, void *handler_data)
void PLFLT PLINT PLINT PLFLT x
void plline3(PLFLT[] x, PLFLT[] y, PLFLT[] z)
alias c_plstripa plstripa
void pltr1(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void c_plscmap0(PLINT *r, PLINT *g, PLINT *b, PLINT ncol0)
void plscmap1l(PLBOOL itype, PLFLT[] intensity, PLFLT[] coord1, PLFLT[] coord2, PLFLT[] coord3, PLBOOL[] alt_hue_path=null)
alias c_plmkstrm plmkstrm
void plbin(PLFLT[] x, PLFLT[] y, PLINT opt)
void plpat(PLINT[] inc, PLINT[] del)
void c_plfont(PLINT ifont)
void plsabort(void function(const char *) handler)
void plGetName(const char *dir, const char *subdir, const char *filename, char **filespec)
void c_plline(PLINT n, PLFLT *x, PLFLT *y)
void c_plsurf3dl(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLFLT *clevel, PLINT nlevel, PLINT ixstart, PLINT ixn, PLINT *indexymin, PLINT *indexymax)
alias c_plsdidev plsdidev
alias c_plcalc_world plcalc_world
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT PLINT PLFLT PLFLT PLINT PLFLT PLINT const PLINT const char *const PLINT const char *const const PLFLT const PLINT const PLINT const PLFLT * a
void c_plprec(PLINT setp, PLINT prec)
void c_plbox(const char *xopt, PLFLT xtick, PLINT nxsub, const char *yopt, PLFLT ytick, PLINT nysub)
void c_plgriddata(PLFLT *x, PLFLT *y, PLFLT *z, PLINT npts, PLFLT *xg, PLINT nptsx, PLFLT *yg, PLINT nptsy, PLFLT **zg, PLINT type, PLFLT data)
void c_plsdiori(PLFLT rot)
void c_plpoin3(PLINT n, PLFLT *x, PLFLT *y, PLFLT *z, PLINT code)
alias c_plgdiori plgdiori
void plsKeyEH(void function(PLGraphicsIn *, void *, int *) KeyEH, void *KeyEH_data)
void c_pllegend(PLFLT *p_legend_width, PLFLT *p_legend_height, PLINT opt, PLINT position, PLFLT x, PLFLT y, PLFLT plot_width, PLINT bg_color, PLINT bb_color, PLINT bb_style, PLINT nrow, PLINT ncolumn, PLINT nlegend, PLINT *opt_array, PLFLT text_offset, PLFLT text_scale, PLFLT text_spacing, PLFLT text_justification, PLINT *text_colors, const char **text, PLINT *box_colors, PLINT *box_patterns, PLFLT *box_scales, PLFLT *box_line_widths, PLINT *line_colors, PLINT *line_styles, PLFLT *line_widths, PLINT *symbol_colors, PLFLT *symbol_scales, PLINT *symbol_numbers, const char **symbols)
alias c_plrgbhls plrgbhls
void plsError(PLINT *errcode, const char *errmsg)
void plsButtonEH(void function(PLGraphicsIn *, void *, int *) ButtonEH, void *ButtonEH_data)
void(* ct_func)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer)
alias c_plmeridians plmeridians
void c_plmtex3(const char *side, PLFLT disp, PLFLT pos, PLFLT just, const char *text)
subroutine plbox3(xopt, xlabel, xtick, nxsub, yopt, ylabel, ytick, nysub, zopt, zlabel, ztick, nzsub)
void c_plrgb(PLFLT r, PLFLT g, PLFLT b)
alias c_plstripd plstripd
void plsexit(int function(const char *) handler)
PLDLLIMPEXP void c_plmeridians(void(*mapform)(PLINT, PLFLT *, PLFLT *), PLFLT dlong, PLFLT dlat, PLFLT minlong, PLFLT maxlong, PLFLT minlat, PLFLT maxlat)
void plscmap1la(PLBOOL itype, PLFLT[] intensity, PLFLT[] coord1, PLFLT[] coord2, PLFLT[] coord3, PLFLT[] a, PLBOOL[] alt_hue_path=null)
void c_plsfnam(const char *fnam)
void plvect(PLFLT[][] u, PLFLT[][] v, PLFLT scale, ref PLcGrid2 cgrid2)
void plMinMax2dGrid(PLFLT **f, PLINT nx, PLINT ny, PLFLT *fmax, PLFLT *fmin)
void plscmap1(PLINT[] r, PLINT[] g, PLINT[] b)
alias c_plsdiplt plsdiplt
void c_plgzax(PLINT *p_digmax, PLINT *p_digits)
void c_plsurf3d(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt, PLFLT *clevel, PLINT nlevel)
void c_plgdev(char *p_dev)
void c_plgvpw(PLFLT *p_xmin, PLFLT *p_xmax, PLFLT *p_ymin, PLFLT *p_ymax)
void c_plsvpa(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax)
void plfcont(PLFLT function(PLINT, PLINT, PLPointer) f2eval, PLPointer f2eval_data, PLINT nx, PLINT ny, PLINT kx, PLINT lx, PLINT ky, PLINT ly, PLFLT *clevel, PLINT nlevel, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
void pldip2dc(PLFLT *xmin, PLFLT *ymin, PLFLT *xmax, PLFLT *ymax)
void c_plgfnam(char *fnam)
void c_plgxax(PLINT *p_digmax, PLINT *p_digits)
void c_plscolbg(PLINT r, PLINT g, PLINT b)
void c_plstar(PLINT nx, PLINT ny)
void c_plptex(PLFLT x, PLFLT y, PLFLT dx, PLFLT dy, PLFLT just, const char *text)
void c_plfill3(PLINT n, PLFLT *x, PLFLT *y, PLFLT *z)
void c_plw3d(PLFLT basex, PLFLT basey, PLFLT height, PLFLT xmin0, PLFLT xmax0, PLFLT ymin0, PLFLT ymax0, PLFLT zmin0, PLFLT zmax0, PLFLT alt, PLFLT az)
void c_plbin(PLINT nbin, PLFLT *x, PLFLT *y, PLINT opt)
void c_plmtex(const char *side, PLFLT disp, PLFLT pos, PLFLT just, const char *text)
void c_plsxax(PLINT digmax, PLINT digits)
static void pltr(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *pltr_data)
void c_plhist(PLINT n, PLFLT *data, PLFLT datmin, PLFLT datmax, PLINT nbin, PLINT opt)
void c_plsdiplz(PLFLT xmin, PLFLT ymin, PLFLT xmax, PLFLT ymax)
void c_plbtime(PLINT *year, PLINT *month, PLINT *day, PLINT *hour, PLINT *min, PLFLT *sec, PLFLT ctime)
void c_plstripa(PLINT id, PLINT pen, PLFLT x, PLFLT y)
void c_plcpstrm(PLINT iplsr, PLBOOL flags)
alias c_plscompression plscompression
void c_plcol1(PLFLT col1)
alias c_plspause plspause
#define PLESC_SET_COMPRESSION
void c_plmesh(PLFLT *x, PLFLT *y, PLFLT **z, PLINT nx, PLINT ny, PLINT opt)
void plfshade(PLFLT function(PLINT, PLINT, PLPointer) f2eval, PLPointer f2eval_data, PLFLT function(PLINT, PLINT, PLPointer) c2eval, 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, PLFLT sh_width, PLINT min_color, PLFLT min_width, PLINT max_color, PLFLT max_width, void function(PLINT, PLFLT *, PLFLT *) fill, PLBOOL rectangular, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
void(* mapform_func)(PLINT, PLFLT *, PLFLT *)
void PLFLT PLINT PLINT PLFLT PLFLT y
void plerrx(PLFLT[] xmin, PLFLT[] xmax, PLFLT[] y)
void c_plsyax(PLINT digmax, PLINT digits)
subroutine plaxes(x0, y0, xopt, xtick, nxsub, yopt, ytick, nysub)
void c_plgspa(PLFLT *xmin, PLFLT *xmax, PLFLT *ymin, PLFLT *ymax)
alias c_plslabelfunc plslabelfunc
alias c_plconfigtime plconfigtime
void c_plhls(PLFLT h, PLFLT l, PLFLT s)
void c_plrgbhls(PLFLT r, PLFLT g, PLFLT b, PLFLT *p_h, PLFLT *p_l, PLFLT *p_s)
void c_plcalc_world(PLFLT rx, PLFLT ry, PLFLT *wx, PLFLT *wy, PLINT *window)
void(* fill_func)(PLINT, const PLFLT *, const PLFLT *)
void c_plrgb1(PLINT r, PLINT g, PLINT b)
void c_plstyl(PLINT nms, PLINT *mark, PLINT *space)
void c_plssub(PLINT nx, PLINT ny)
void c_plsdev(const char *devname)
void c_plvpas(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT aspect)
subroutine plspal0(filename)
void c_plvpor(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax)
alias c_plglevel plglevel
alias c_plscolor plscolor
alias c_plsdiplz plsdiplz
void c_plsdidev(PLFLT mar, PLFLT aspect, PLFLT jx, PLFLT jy)
void plgFileDevs(char ***p_menustr, char ***p_devname, int *p_ndev)
void pltr2p(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void pltr2(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void c_plgcolbg(PLINT *r, PLINT *g, PLINT *b)
void c_pl_setcontlabelparam(PLFLT offset, PLFLT size, PLFLT spacing, PLINT active)
void c_pljoin(PLFLT x1, PLFLT y1, PLFLT x2, PLFLT y2)
void c_plgvpd(PLFLT *p_xmin, PLFLT *p_xmax, PLFLT *p_ymin, PLFLT *p_ymax)
PLFLT plf2evalr(PLINT ix, PLINT iy, PLPointer plf2eval_data)
void c_plsfam(PLINT fam, PLINT num, PLINT bmax)
int plparseopts(char[][] args, PLINT mode)
subroutine plsetopt(opt, optarg)
void plsxwin(PLINT window_id)
alias c_plscolbga plscolbga
void c_plglevel(PLINT *p_level)
subroutine plptex(x, y, dx, dy, xjust, text)
alias c_plscolbg plscolbg
void c_plsdimap(PLINT dimxmin, PLINT dimxmax, PLINT dimymin, PLINT dimymax, PLFLT dimxpmm, PLFLT dimypmm)
void c_plimage(PLFLT **idata, PLINT nx, PLINT ny, PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT zmin, PLFLT zmax, PLFLT Dxmin, PLFLT Dxmax, PLFLT Dymin, PLFLT Dymax)
void c_plctime(PLINT year, PLINT month, PLINT day, PLINT hour, PLINT min, PLFLT sec, PLFLT *ctime)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT PLINT PLFLT PLFLT PLINT cont_color
void c_plshade(PLFLT **a, PLINT nx, PLINT ny, PLINT function(PLFLT, PLFLT) defined, PLFLT left, PLFLT right, PLFLT bottom, PLFLT top, PLFLT shade_min, PLFLT shade_max, PLINT sh_cmap, PLFLT sh_color, PLFLT sh_width, PLINT min_color, PLFLT min_width, PLINT max_color, PLFLT max_width, void function(PLINT, PLFLT *, PLFLT *) fill, PLBOOL rectangular, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
void c_plstart(const char *devname, PLINT nx, PLINT ny)
void c_plgfont(PLINT *p_family, PLINT *p_style, PLINT *p_weight)
alias c_plxormod plxormod
void c_plsfont(PLINT family, PLINT style, PLINT weight)
void plsvect(PLFLT[] arrowx, PLFLT[] arrowy, PLBOOL fill)
void c_plsdiplt(PLFLT xmin, PLFLT ymin, PLFLT xmax, PLFLT ymax)
void c_plfontld(PLINT fnt)
subroutine pllab(xlab, ylab, title)
void plmeshc(PLFLT[] x, PLFLT[] y, PLFLT[][] z, PLINT opt, PLFLT[] clevel)
void c_plpoin(PLINT n, PLFLT *x, PLFLT *y, PLINT code)
PLFLT plGetFlt(const char *s)
void plcont(PLFLT[][] f, PLINT kx, PLINT lx, PLINT ky, PLINT ly, PLFLT[] clevel, ref PLcGrid2 cgrid2)
static PLOptionTable options[]
void c_pllightsource(PLFLT x, PLFLT y, PLFLT z)
PLFLT plf2eval(PLINT ix, PLINT iy, PLPointer plf2eval_data)
void c_pltext()
Switches to text screen.
void c_plimagefr(PLFLT **idata, PLINT nx, PLINT ny, PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT zmin, PLFLT zmax, PLFLT valuemin, PLFLT valuemax, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer), PLPointer pltr_data)
PLFLT plf2eval2(PLINT ix, PLINT iy, PLPointer plf2eval_data)
alias c_plscol0a plscol0a
void c_plxormod(PLBOOL mode, PLBOOL *status)
void c_pltimefmt(const char *fmt)
void c_plsym(PLINT n, PLFLT *x, PLFLT *y, PLINT code)
void c_plsmem(PLINT maxx, PLINT maxy, void *plotmem)
void c_plscmap1(PLINT *r, PLINT *g, PLINT *b, PLINT ncol1)
void plerry(PLFLT[] x, PLFLT[] ymin, PLFLT[] ymax)
void c_plgdiori(PLFLT *p_rot)
#define PLESC_DOUBLEBUFFERING_DISABLE
void pltr0(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, PLPointer pltr_data)
void c_plscmap1a(PLINT *r, PLINT *g, PLINT *b, PLFLT *a, PLINT ncol1)
void c_plspage(PLFLT xp, PLFLT yp, PLINT xleng, PLINT yleng, PLINT xoff, PLINT yoff)
alias plAlloc2dGrid Alloc2dGrid
void plstyl(PLINT[] mark, PLINT[] space)
void c_plslabelfunc(void function(PLINT, PLFLT, char *, PLINT, PLPointer) labelfunc, PLPointer label_data)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT PLINT PLFLT PLFLT PLINT PLFLT cont_width
void c_plspal1(const char *filename, PLBOOL interpolate)
subroutine plspal1(filename, interpolate)
int plSetOpt(const char *opt, const char *optarg)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT PLINT PLINT bb_style
void plAlloc2dGrid(PLFLT ***f, PLINT nx, PLINT ny)
PLFLT ** convert_array(PLFLT[][] a)
void c_plgyax(PLINT *p_digmax, PLINT *p_digits)
subroutine plstart(devname, nx, ny)
void plgDevs(char ***p_menustr, char ***p_devname, int *p_ndev)
int c_plsetopt(const char *opt, const char *optarg)
void c_plerrx(PLINT n, PLFLT *xmin, PLFLT *xmax, PLFLT *y)
alias c_plstransform plstransform
void c_plgpage(PLFLT *p_xp, PLFLT *p_yp, PLINT *p_xleng, PLINT *p_yleng, PLINT *p_xoff, PLINT *p_yoff)
alias c_plgcolbga plgcolbga
void c_plerry(PLINT n, PLFLT *x, PLFLT *ymin, PLFLT *ymax)
alias c_pllightsource pllightsource
subroutine plptex3(x, y, z, dx, dy, dz, sx, sy, sz, xjust, text)
void plsurf3d(PLFLT[] x, PLFLT[] y, PLFLT[][] z, PLINT opt, PLFLT[] clevel=null)
int plGetCursor(PLGraphicsIn *gin)
alias c_plgradient plgrdient
void c_plgstrm(PLINT *p_strm)
void pltr0f(PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void *pltr_data)
void c_plwind(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax)
alias c_plgcolbg plgcolbg
void plgradient(PLFLT[] x, PLFLT[] y, PLFLT angle)
void plot3dc(PLFLT[] x, PLFLT[] y, PLFLT[][] z, PLINT opt, PLFLT[] clevel)
void plfill(PLFLT[] x, PLFLT[] y)
void plfill3(PLFLT[] x, PLFLT[] y, PLFLT[] z)
void c_pllab(const char *xlabel, const char *ylabel, const char *tlabel)
void PLFLT PLINT PLINT PLFLT PLFLT PLFLT PLFLT PLINT bg_color
void plscmap1a(PLINT[] r, PLINT[] g, PLINT[] b, PLFLT[] a)
void c_plenv0(PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLINT just, PLINT axis)
#define PL_FCI_HEXDIGIT_MASK
void c_plscmap0n(PLINT ncol0)
alias c_plgcol0a plgcol0a
void pl_cmd(PLINT op, void *ptr)
void c_plvasp(PLFLT aspect)
#define PL_PARSE_OVERRIDE
alias c_pl_setcontlabelparam pl_setcontlabelparam
void c_plgdiplt(PLFLT *p_xmin, PLFLT *p_ymin, PLFLT *p_xmax, PLFLT *p_ymax)
void c_plscolbga(PLINT r, PLINT g, PLINT b, PLFLT a)
dx
if { $zoomopts($this,1) == 0 } then {
void c_plscolor(PLINT color)
void c_plgcol0(PLINT icol0, PLINT *r, PLINT *g, PLINT *b)
void plhist(PLFLT[] data, PLFLT datmin, PLFLT datmax, PLINT nbin, PLINT opt)
void c_plstring3(PLINT n, PLFLT *x, PLFLT *y, PLFLT *z, const char *text)
void c_plpat(PLINT nlin, PLINT *inc, PLINT *del)
void c_plgcol0a(PLINT icol0, PLINT *r, PLINT *g, PLINT *b, PLFLT *a)
alias c_plsdimap plsdimap
void plscmap0(PLINT[] r, PLINT[] g, PLINT[] b)
void c_plshades(PLFLT **a, PLINT nx, PLINT ny, PLINT function(PLFLT, PLFLT) defined, PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT *clevel, PLINT nlevel, PLFLT fill_width, PLINT cont_color, PLFLT cont_width, void function(PLINT, PLFLT *, PLFLT *) fill, PLBOOL rectangular, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
PLDLLIMPEXP void c_plmap(void(*mapform)(PLINT, PLFLT *, PLFLT *), const char *type, PLFLT minlong, PLFLT maxlong, PLFLT minlat, PLFLT maxlat)
void c_plgfci(PLUNICODE *pfci)
void c_plpoly3(PLINT n, PLFLT *x, PLFLT *y, PLFLT *z, PLBOOL *draw, PLBOOL ifcc)
subroutine pltimefmt(fmt)
#define PL_FCI_HEXPOWER_IMPOSSIBLE
void c_plbox3(const char *xopt, const char *xlabel, PLFLT xtick, PLINT nsubx, const char *yopt, const char *ylabel, PLFLT ytick, PLINT nsuby, const char *zopt, const char *zlabel, PLFLT ztick, PLINT nsubz)
alias c_plgcompression plgcompression
void plpoin3(PLFLT[] x, PLFLT[] y, PLFLT[] z, PLINT code)
void plot3d(PLFLT[] x, PLFLT[] y, PLFLT[][] z, PLINT opt, PLBOOL side)
void c_plvect(PLFLT **u, PLFLT **v, PLINT nx, PLINT ny, PLFLT scale, void function(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) pltr, PLPointer pltr_data)
void c_plsvect(PLFLT *arrowx, PLFLT *arrowy, PLINT npts, PLBOOL fill)
alias c_plscmap0n plscmap0n
void c_plfill(PLINT n, PLFLT *x, PLFLT *y)
alias plFree2dGrid Free2dGrid
void plpoly3(PLFLT[] x, PLFLT[] y, PLFLT[] z, PLBOOL[] draw, PLBOOL ifcc)
PLINT plGetInt(const char *s)