I am trying to create inset maps using ArcPy and I want them to be circles, but I don't know how to create a circular function the same way a rectangle function was up on the GraphicElement Documentation.
This is the code for a rectangle that was on the documentation:
def MakeRec_LL(llx, lly, w, h):
xyRecList = [[llx, lly], [llx, lly+h], [llx+w,lly+h], [llx+w,lly], [llx,lly]]
xyRecList = [[1,1],[1, 2], [2.75, 2], [2.75, 1], [1, 1]]
array = arcpy.Array([arcpy.Point(*coords) for coords in xyRecList])
rec = arcpy.Polygon(array)
return rec
p = arcpy.mp.ArcGISProject('CURRENT')
#Create a layout
lyt = p.createLayout(6, 3, 'INCH', 'New Layout with Rectangles')
Does anyone know how to replicate this process, but for circles instead?