how come when i do oGraphics.FillEllipse it draws blury? is there anyway to adjust this default comp

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

how come when i do oGraphics.FillEllipse it draws blury? is there anyway to
adjust this default compression to not be blury when drawing a simple
ellipse?
 
Daniel said:
how come when i do oGraphics.FillEllipse it draws blury? is there anyway to
adjust this default compression to not be blury when drawing a simple
ellipse?
Is it blurry or jagged?

Check out the SmoothingMode property of the graphics class.

Antialias will make it look smooth (which is actually blurry for arc's).

HTH
JB
 
Hey Daniel,

Often when you try drawing graphics manually using
'Graphics.FillEllipse' - especially with circles, the circles can get a
bit jagged, and I believe its just normal.
However, different computers with different monitors could perharps
make a difference,
but, hey, this is a computer, and it's already 'trying-its-hardest'.

But really, I don't really see a desperate reason to 'unblur' a graphic
unless you're making a commerical game.

Just consider the above

Cheers,
Visually Seen #
 
Back
Top