Method: CP::BB#expand
- Defined in:
- ext/chipmunk/rb_cpBB.c
#expand(other) ⇒ Object
201 202 203 204 |
# File 'ext/chipmunk/rb_cpBB.c', line 201
static VALUE
rb_cpBBexpand(VALUE self, VALUE other) {
return BBNEW(cpBBExpand(*BBGET(self), *VGET(other)));
}
|