Method: PLplot.plgxax
- Defined in:
- ext/rbplplot.c
.plgxax ⇒ Array
Get x axis parameters
3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 |
# File 'ext/rbplplot.c', line 3081
static VALUE
rb_mPLplot_plgxax(VALUE obj)
{
PLINT ovar0;
PLINT ovar1;
plgxax(&ovar0,&ovar1);
return rb_ary_new3(2,
LONG2NUM(ovar0),
LONG2NUM(ovar1)
);
}
|