Method: CP::Shape::Circle#set_radius!
- Defined in:
- ext/chipmunk/rb_cpShape.c
#set_radius!(radius) ⇒ Object
“unsafe” API.
391 392 393 394 395 |
# File 'ext/chipmunk/rb_cpShape.c', line 391
static VALUE
rb_cpCircleShapeSetRadius(VALUE self, VALUE radius) {
cpCircleShapeSetRadius(SHAPE(self), NUM2DBL(radius));
return self;
}
|