Created
August 11, 2025 10:20
-
-
Save mdavey/e9b5f5aaa84303730bb04d2050187d16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' 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