Class: VIPS::Interpolator
- Inherits:
-
Object
- Object
- VIPS::Interpolator
- Defined in:
- ext/interpolator.c
Instance Method Summary collapse
-
#description ⇒ String
Retrieve the description of the interpolator.
-
#nickname ⇒ String
Retrieve the internally used nickname of the interpolator.
Instance Method Details
#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); } |
#nickname ⇒ String
Retrieve the internally used nickname of the interpolator.
60 61 62 63 64 65 66 |
# File 'ext/interpolator.c', line 60 static VALUE interp_nickname(VALUE obj) { VipsObject *v_obj; Data_Get_Struct(obj, VipsObject, v_obj); return rb_str_new2(v_obj->nickname); } |