Method: PLplot::GraphicsIn#py
- Defined in:
- ext/rbplplot.c
#py ⇒ Integer Also known as: pY
Gets absolute device y coordinate of pointer.
4326 4327 4328 4329 4330 4331 4332 |
# File 'ext/rbplplot.c', line 4326 static VALUE rb_cPLGraphicsIn_py(VALUE self) { PLGraphicsIn *p; Data_Get_Struct(self, PLGraphicsIn, p); return INT2NUM(p->pY); } |