Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Demos/Tests/ResizeTest/resize_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from mewnala import (
background,
ellipse,
window_resizable,
run,
size,
)


def setup():
# TODO:
# Renderer type is missing, revisit
# https://github.com/processing/processing-examples-mewnala/issues/290#issuecomment-5243157971
size(400, 400)
window_resizable(True)


def draw():
background(255, 0, 0)
ellipse(width / 2, height / 2, 100, 50)


run()