Last active
June 18, 2022 16:41
-
-
Save WhatIThinkAbout/ed1258ca128e38652ba255548bdf8fbf to your computer and use it in GitHub Desktop.
draw_base.py
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
| def draw_base(canvas): | |
| canvas.fill_style = 'orange' | |
| canvas.fill_rect(0, 0, canvas.width, canvas.height) | |
| draw_base(canvas) | |
| canvas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment