I want to add a quarter circle to delimit the evolution of the 2D CA with code 746 (which is almost circular) like it's shown here
I tried what's shown below, but I can't get the Epilog to show, why?
Manipulate[ ArrayPlot[
(ca = CellularAutomaton[
{746, {2, {{2, 2, 2}, {2, 1, 2}, {2, 2, 2}}}, {1, 1}},
{Table[1, {5}, {1}], 0}, {{{steps}}}])
[[1 ;; Floor[Dimensions[ca][[1]]/2],
Floor[Dimensions[ca][[2]]/2] ;; -1 ]]
,
ImageSize -> {460, 330}, Frame -> False,
Epilog -> {Circle[{0, 0}, 1, {0, Pi/2}]}], {{steps, 100}, 1, 1000,
1, Appearance -> "Labeled"}]