Skip to content

Instantly share code, notes, and snippets.

@mdavey
Created August 11, 2025 10:20
Show Gist options
  • Select an option

  • Save mdavey/e9b5f5aaa84303730bb04d2050187d16 to your computer and use it in GitHub Desktop.

Select an option

Save mdavey/e9b5f5aaa84303730bb04d2050187d16 to your computer and use it in GitHub Desktop.
' draw basic gradient for picocalc MMBasic
sub Draw()
local x
local y
local width = 320
local height = 320
for x = 0 to width-1
for y = 0 to height-1
r = (x/width)*255
g = (y/width)*255
b = 128
color RGB(r, g, b)
pixel x, y
next
next
end sub
Draw()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment