Method: PLplot.plglevel
- Defined in:
- ext/rbplplot.c
.plglevel ⇒ Object
Get the (current) run level
2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'ext/rbplplot.c', line 2925
static VALUE
rb_mPLplot_plglevel(VALUE obj)
{
PLINT ovar0;
plglevel(&ovar0);
return LONG2NUM(ovar0);
}
|