B
Brian Basquille
I have an image drawn on my form using GDI+ like so:
// image of puck is loaded and drawn
Image imagePuck = Image.FromFile("Puck.png");
g.DrawImage(imagePuck, puck_x, puck_y, 36, 36);
The image is just a simple circle. How would i go about getting the area of
this circle??
// image of puck is loaded and drawn
Image imagePuck = Image.FromFile("Puck.png");
g.DrawImage(imagePuck, puck_x, puck_y, 36, 36);
The image is just a simple circle. How would i go about getting the area of
this circle??