You need to sign in or sign up before continuing.×
Ad
  • Custom User Avatar

    from processing import *

    def setup():
    size(500,500)

    def draw():
    background(220)
    text(str(mouseX) + ", " + str(mouseY), 20, 20)
    fill(249,248,247)
    rect(128,98,150,190)
    line(128,185,279,157)
    line(130,194,281,166)
    line(128,208,278,175)

    fill(0,0,0)
    textSize(20)
    text("s",132,109)
    text("ps5",236,277)
    

    draw = draw
    run()