Method: PLplot.plfont
- Defined in:
- ext/rbplplot.c
.plfont(font) ⇒ nil
Set character font
2608 2609 2610 2611 2612 2613 2614 2615 |
# File 'ext/rbplplot.c', line 2608
static VALUE
rb_mPLplot_plfont(VALUE obj,VALUE arg0)
{
PLINT ivar0;
ivar0 = NUM2LONG(arg0);
plfont(ivar0);
return Qnil;
}
|