How do we check if a circle, c, overlaps with a group, g? a. Loop over the shapes in g and check temporaryShapeName.hitsShape(c) for each one. b. Check g.hitsShape(c) c. Check temporaryShapeName.hitsShape(c) d. Loop over the shapes in c and check temporaryShapeName.hitsShape(g) for each one.