I have to create the above image
The text inside is variable. What I mean is that I want to pass 2 values to it for display and these values keep changing. I am trying this:
(define (circle-text vx vy)
(underlay/align "center"
"center"
(circle 40 "outline" "blue")
(text "("vx", "vy")" 14 "blue")))
But this obviously doesnt work. Please suggest me any better syntax or anything.