static bool pointToCircle(Vec2 p, Circle b) { final dist = p - b.position; return b.radSq >= dist.magnitudeSquared; }