8 lines
211 B
Text
8 lines
211 B
Text
|
|
def setup():
|
||
|
|
size(640, 480)
|
||
|
|
|
||
|
|
def draw():
|
||
|
|
# mouseX and mouseY provide the current mouse position
|
||
|
|
ellipse(mouseX, mouseY, 5, 5) # graphic output example
|
||
|
|
println("x:{} y:{}".format(mouseX, mouseY))
|