Processing函数与循环

函数的定义 返回类型 函数名称 (引数) { //函数的代码 } 如下面描绘熊猫的代码 void setup() {   size(900,300);   smooth(); } void draw() {   background(200);   for (int x=60;x<width;x+=110) {     for (int y=50;y<height;y+=100) {      
相关文章
相关标签/搜索