I am attempting to complete a project where, on mouse click, 200 circles are drawn from the clicked location as the center point, growing larger from 1 radius to 200.
I don't need help with the mouse part of this program.
My current roadblock is that it would seem that although there were circle methods in previous releases of VB, VB.NET only uses the System.CreateGraphics.DrawEllipse method to create circles, and this method uses an x and y coordinate as a starting location for the upper lefthand corner of an invisible rectangle and uses two more integers/singles to decide the distance to the right and down (x + and y +) to determine the size and location of the circle.
I'm hoping I am just epically missing a built in way to create a circle/ellipsis using a center point and declaring the radius from that center point in order to complete my program.
Is there a way to draw a circle onto a FORM using a center point as the point of reference then declare the radius?