Method: CP::BB#intersect_bb?
- Defined in:
- ext/chipmunk/rb_cpBB.c
#intersect_bb?(other) ⇒ Boolean
104 105 106 107 108 |
# File 'ext/chipmunk/rb_cpBB.c', line 104 static VALUE rb_cpBBIntersectsBB(VALUE self, VALUE other) { int value = cpBBIntersects(*BBGET(self), *BBGET(other)); return CP_INT_BOOL(value); } |