An open API service indexing awesome lists of open source software.

https://github.com/david-pena/drawing-lines-algorithms

Different algorithms to plot a line using Python
https://github.com/david-pena/drawing-lines-algorithms

algorithm python

Last synced: 9 months ago
JSON representation

Different algorithms to plot a line using Python

Awesome Lists containing this project

README

          

# Drawing-Lines-Algorithms

This is a brief compilation of some algorithms used to draw a line given two points (x,y), then we check the runtime of each one and determine the fastest.
- Basic algorithm (Using For loop)
- Basic algorithm (Using While loop)
- A better basic algorithm
- Incremental Algorithm
- Bresenham Algorithm