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

📄 reach2.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * Reach 2.  * Based on code from Keith Peters (www.bit-101.com) *  * The arm follows the position of the mouse by * calculating the angles with atan2().  */int numSegments = 10;float[] x = new float[numSegments];float[] y = new float[numSegments];float[] angle = new float[numSegments];float segLength = 20;float targetX, targetY;void setup() {  size(200, 200);  smooth();   strokeWeight(20.0);  stroke(0, 100);  x[x.length-1] = 0;     // Set base x-coordinate  y[x.length-1] = height;  // Set base y-coordinate}void draw() {  background(226);    reachSegment(0, mouseX, mouseY);  for(int i=1; i<numSegments; i++) {    reachSegment(i, targetX, targetY);  }  for(int i=x.length-1; i>=1; i--) {    positionSegment(i, i-1);    }   for(int i=0; i<x.length; i++) {    segment(x[i], y[i], angle[i], (i+1)*2);   }}void positionSegment(int a, int b) {  x[b] = x[a] + cos(angle[a]) * segLength;  y[b] = y[a] + sin(angle[a]) * segLength; }void reachSegment(int i, float xin, float yin) {  float dx = xin - x[i];  float dy = yin - y[i];  angle[i] = atan2(dy, dx);    targetX = xin - cos(angle[i]) * segLength;  targetY = yin - sin(angle[i]) * segLength;}void segment(float x, float y, float a, float sw) {  strokeWeight(sw);  pushMatrix();  translate(x, y);  rotate(a);  line(0, 0, segLength, 0);  popMatrix();}

⌨️ 快捷键说明

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