Class: VIPS::Interpolator

Inherits:
Object
  • Object
show all
Defined in:
ext/interpolator.c

Instance Method Summary collapse

Instance Method Details

#descriptionString

Retrieve the description of the interpolator.

Returns:

  • (String)


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);
}

#nicknameString

Retrieve the internally used nickname of the interpolator.

Returns:

  • (String)


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);
}