Re: [AD] todo list update |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On Sun, 2005-06-05 at 14:04 +0200, Evert Glebbeek wrote:
> This one I don't agree with! At least, I don't agree with the statement
> that the MS Paint ellipse looks better than the Allegro ellipse. To me,
> the MS Paint one looks considerably uglier than the Allegro one.
>
Yes. What it should use is simply a proper Bresenham outline. Like
line(). The difference is this (for line):
With this line:
__ __
| | |/
|__|_/|
| / |
|/_|__|
/
It should do this:
__ __
| |xx|
|__|xx|
|xx| |
|xx|__|
And not this, which looks ugly (to most people):
__ __
| |xx|
|__|xx|
|xx|xx|
|xx|xx|
--
Elias Pschernig <elias@xxxxxxxxxx>