News

Function to implement DDA line drawing algorithm void dda(int x1,int y1,int x2,int y2) { cout<<" Digital Differential Analyzer Line Drawing Algorithm \n\n"; cout<<" Enter the x co-ordinate of point 1: ...
This repository contains an implementation of a line drawing algorithm in JavaSCript. The algorithm is capable of drawing a line between two given points on a 2D plane using the Bresenham's and the ...