Using a specific set of calculations, I am able to create a circle in this manner:
var yMinCir = height - 1515.80/2.667+8.5;
var yMaxCir = height - 1545.80/2.667+8.5;
var myCircle = page.ovals.add({geometricBounds:[yMinCir, 1312.63/2.667+8.5, yMaxCir, 1342.63/2.667+8.5]});
Is it possible to retrieve the center of the circle with code like this:
var centerOfMyCircle = myCircle.center;
Or is manual calculation necessary? If so, how should it be done?
I have searched extensively but have not found any answers...
Thank you for any assistance you can provide!