Method: Pgplot.pgpanl
- Defined in:
- ext/rb_pgplot.c
.pgpanl(arg0, arg1) ⇒ Object
1256 1257 1258 1259 1260 1261 1262 |
# File 'ext/rb_pgplot.c', line 1256
static VALUE
rb_pgplot_pgpanl(VALUE obj,VALUE arg0,VALUE arg1)
{
cpgpanl(NUM2DBL(arg0),NUM2DBL(arg1));
return Qtrue;
}
|