I am using the following routine to plot a circle in VB6:
X - X coordinate of the center
Y - Y Coordinate of the center
R - Radius of the arc
For i = 0 To 360
Me.Pset (X + (R * Cos(i * Pi / 180)), Y + (R * Sin(i * Pi / 180)))
next i
What should I use to plot an Ellipse??
Thank You very much
Dalton Serkez
