Method: Pgplot.pgscrl
- Defined in:
- ext/rb_pgplot.c
.pgscrl(arg0, arg1) ⇒ Object
1568 1569 1570 1571 1572 1573 1574 |
# File 'ext/rb_pgplot.c', line 1568
static VALUE
rb_pgplot_pgscrl(VALUE obj,VALUE arg0,VALUE arg1)
{
cpgscrl(NUM2DBL(arg0),NUM2DBL(arg1));
return Qtrue;
}
|