Defining c-curve

(define c-curve
  (lambda (x0 y0 x1 y1 level)
    (if (= level 0)
        ___________      ;; base case
        ___________  ))) ;; recursive case

Q: What is the base case?