25 #include "chipmunk_types.h"
40 cpBB bb = {l, b, r, t};
48 return cpBBNew(c.x - hw, c.y - hh, c.x + hw, c.y + hh);
60 return (a.l <= b.r && b.l <= a.r && a.b <= b.t && b.b <= a.t);
66 return (bb.l <= other.l && bb.r >= other.r && bb.b <= other.b && bb.t >= other.t);
72 return (bb.l <= v.x && bb.r >= v.x && bb.b <= v.y && bb.t >= v.y);
105 return (bb.r - bb.l)*(bb.t - bb.b);
118 cpFloat tmin = -INFINITY, tmax = INFINITY;
121 if(a.x < bb.l || bb.r < a.x)
return INFINITY;
123 cpFloat t1 = (bb.l - a.x)/delta.x;
124 cpFloat t2 = (bb.r - a.x)/delta.x;
130 if(a.y < bb.b || bb.t < a.y)
return INFINITY;
132 cpFloat t1 = (bb.b - a.y)/delta.y;
133 cpFloat t2 = (bb.t - a.y)/delta.y;
138 if(tmin <= tmax && 0.0f <= tmax && tmin <= 1.0f){
139 return cpfmax(tmin, 0.0f);
163 cpFloat modx = cpfmod(v.x - bb.l, dx);
164 cpFloat x = (modx > 0.0f) ? modx : modx + dx;
167 cpFloat mody = cpfmod(v.y - bb.b, dy);
168 cpFloat y = (mody > 0.0f) ? mody : mody + dy;
170 return cpv(x + bb.l, y + bb.b);