Method: CP::Shape::Circle#set_offset!
- Defined in:
- ext/chipmunk/rb_cpShape.c
#set_offset!(offset) ⇒ Object
397 398 399 400 401 |
# File 'ext/chipmunk/rb_cpShape.c', line 397
static VALUE
rb_cpCircleShapeSetOffset(VALUE self, VALUE offset) {
cpCircleShapeSetOffset(SHAPE(self), *VGET(offset));
return self;
}
|