Digital differential analyzer (graphics algorithm): Difference between revisions

Content deleted Content added
Markzou (talk | contribs)
Adding information and sample code
 
Markzou (talk | contribs)
No edit summary
Line 2:
Here is a sample C code of the DDA implementation:
 
 
<blockquote>
void line DDA(int xa, int ya, int xb, int yb)
{
Line 22:
 
}
</blockquote>