Method: Pgplot.pgqpos
- Defined in:
- ext/rb_pgplot.c
.pgqpos ⇒ Object
1752 1753 1754 1755 1756 1757 1758 |
# File 'ext/rb_pgplot.c', line 1752
static VALUE
rb_pgplot_pgqpos(VALUE obj)
{
float var0;float var1;
cpgqpos(&var0,&var1);
return rb_ary_new3(2,rb_float_new(var0),rb_float_new(var1));
}
|