Database
aa794.asc
Associated article: Algorithm Alley
Tags: Database
_ALGORITHM ALLEY_
by Tim Kientzle
Listing One
void line_1(int x0, int y0, int x1, int y1 )
{
int x = x0,y = y0; /* Current point on line */
int deltaX = x1-x0; /* Change in x from x0 to x1 */
int deltaY = y1...


