Last updated:
0 purchases
P5Canvas 1.0.0
P5Canvas Helper Class
概要
P5Canvasはp5.jsをPyScript(ブラウザ上で動くPython)で使うためのヘルパーライブラリです。
使い方
import P5Canvas
class MyCanvas(P5Canvas):
def setup(self, p5):
self.x = 100
self.y = 100
p5.createCanvas(300, 300)
def draw(self, p5):
p5.background(128)
p5.fill(255, 0, 0)
p5.ellipse(self.x, self.y, 50, 50)
if p5.keyIsDown(p5.LEFT_ARROW):
self.x -= 1
if p5.keyIsDown(p5.RIGHT_ARROW):
self.x += 1
if p5.keyIsDown(p5.UP_ARROW):
self.y -= 1
if p5.keyIsDown(p5.DOWN_ARROW):
self.y += 1
MyCanvas().run()
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.