You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lines from 199 in fill_triangle should be:
sa = 0
sb = 0
if y1 == y2:
last = y1
else:
last = y1-1
y = y0
while y <= last:
which is a better translation of the original Adafruit c -code
needs y+=1 at end of loop