is there a way to draw shapes in a windows application? don't see any api for it.....setting pixels would be extremely slow...wondering if there's a set function :confused:
Printable View
is there a way to draw shapes in a windows application? don't see any api for it.....setting pixels would be extremely slow...wondering if there's a set function :confused:
I was trying to get a circle...found it
just for reference:
Ellipse(HDC, X1, Y1, X2, Y2);
X1,Y1 = coordinates of upper left
X2,Y2 = coordinates of lower right
:)
There's also Rectangle and RoundedRect in case you were wondering.
:)