Method: PLplot.plspause
- Defined in:
- ext/rbplplot.c
.plspause(bool) ⇒ nil
Set the pause (on end-of-page) status
3915 3916 3917 3918 3919 3920 3921 3922 |
# File 'ext/rbplplot.c', line 3915
static VALUE
rb_mPLplot_plspause(VALUE obj,VALUE arg0)
{
int ivar0;
ivar0 = PL_RTEST(arg0);
plspause(ivar0);
return Qnil;
}
|