⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 translate.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Translate.  *  * The translate() function allows objects to be moved * to any location within the window. The first parameter * sets the x-axis offset and the second parameter sets the * y-axis offset.  */ float x, y;float size = 40.0;void setup() {  size(200,200);  noStroke();  frameRate(30);}void draw() {  background(102);    x = x + 0.8;    if (x > width + size) {    x = -size;  }     translate(x, height/2-size/2);  fill(255);  rect(-size/2, -size/2, size, size);    // Transforms accumulate.  // Notice how this rect moves twice  // as fast as the other, but it has  // the same parameter for the x-axis value  translate(x, size);  fill(0);  rect(-size/2, -size/2, size, size);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -