First time here? Check out the FAQ!
answered 2019-11-26 11:28:01 +0100
You can start from an empty graphics, and add circles to it directly as follows:
sage: G = Graphics() sage: for c in lis: ....: G += circle(c, .05, fill=true, color='red')
Then, you can show it with:
sage: G