Method: PLplot.plgcompression
- Defined in:
- ext/rbplplot.c
.plgcompression ⇒ Object
Get the current device-compression setting
2747 2748 2749 2750 2751 2752 2753 2754 |
# File 'ext/rbplplot.c', line 2747
static VALUE
rb_mPLplot_plgcompression(VALUE obj)
{
PLINT ovar0;
plgcompression(&ovar0);
return LONG2NUM(ovar0);
}
|