如何为 Processing 设置Python模式?
Processing 是用于电子艺术和视觉设计社区的开源软件。我们可以使用我们的编码技能创造不同类型的艺术。例如游戏、动画和物理引擎等。
第 1 步:下载 Windows(64/32 位)
步骤 2:在任何文件夹中解压缩 Zip 文件并打开处理 .exe。
第 3 步:将打开处理 IDE。之后编写自己的代码。
第 4 步:要设置 python 模式进行处理,请单击添加更多。
第 5 步:单击Python Mode for Processing 3 ,然后单击安装按钮。
第六步:安装完成后,我们可以看到在处理ide中添加了Python模式。
示例:在代码块中添加代码并查看动画。
Python3
# Function to set up size of output window
# and colour mode.
def setup():
size(600, 600)
colorMode(HSB)
noStroke()
# Function to set up colour fill and ellise size.
def draw():
fill(0x11000000)
fill(0x1000000)
fill(0x11000011)
rect(0, 0, width, height)
fill(frameCount % 255, 255, 255)
ellipse(random(0,width), random(0,height), 40, 40)
输出: