Skip to content

Instantly share code, notes, and snippets.

View AndrewLaptev's full-sized avatar
🙂
Make it work. Make it right. Make it fast. Make it better.

Andrew Laptev AndrewLaptev

🙂
Make it work. Make it right. Make it fast. Make it better.
View GitHub Profile
@AndrewLaptev
AndrewLaptev / donut.py
Last active July 27, 2022 14:45
Code of donut ported on Python 3.8 from donut.c (https://gist.github.com/gcr/1075131)
import sys
import math
from time import sleep
R_ROW_LEN = 1760
Z_ROW_LEN = 7040
def frange(x: float, y:float, step: float):
while x < y: