Method: Ray::PixelBus#resize
- Defined in:
- ext/pixel_bus.c
#resize(new_size) ⇒ Object
84 85 86 87 88 |
# File 'ext/pixel_bus.c', line 84
static
VALUE ray_pixel_bus_resize(VALUE self, VALUE size) {
say_pixel_bus_resize(ray_rb2pixel_bus(self), NUM2ULONG(size));
return self;
}
|