1 | initial version |
Do you mean something like this ?
If yes, you could can have a look at the functions circle
, disk
, polygon
as follows;
sage: circle?
sage: disk?
sage: polygon?
And then you should know that graphics are Python objects that can be added, for example:
sage: ellipse((0,0),2,1) + ellipse((0,3),1,2)
Do not hesitate to ask for more details by showing your attempts in getting such pictures.