Method: VIPS::Interpolator#description
- Defined in:
- ext/interpolator.c
#description ⇒ String
Retrieve the description of the interpolator.
75 76 77 78 79 80 81 |
# File 'ext/interpolator.c', line 75
static VALUE
interp_description(VALUE obj)
{
VipsObject *v_obj;
Data_Get_Struct(obj, VipsObject, v_obj);
return rb_str_new2(v_obj->description);
}
|