(define length-of-c-curve (lambda (x0 y0 x1 y1 level) (if (= level 0) (line x0 y0 x1 y1) ; change this (let ((xmid (/ (+ x0 x1) 2)) (ymid (/ (+ y0 y1) 2)) (dx (- x1 x0)) (dy (- y1 y0))) (let ((xa (- xmid (/ dy 2))) (ya (+ ymid (/ dx 2)))) (overlay (c-curve x0 y0 xa ya (- level 1)) ; change this (c-curve xa ya x1 y1 (- level 1))))))))Q: Instead of drawing the line, do what?
A: