Processing3 1.随机行走

Posted 注销了

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Processing3 1.随机行走相关的知识,希望对你有一定的参考价值。

class Walker {
  int x;
  int y;
  Walker() {
    x = width/2;
    y = height/2;
  }
  void display() {
    stroke(0);
    point(x,y);
  }
  
  void step() {
    int choice = int(random(4)); //0,1,2,or 3
    if(choice == 0) {
      x++;
    } else if(choice == 1) {
      x--;
    } else if(choice == 2) {
      y++;
    } else {
      y--;
    }
  }
}

Walker walker;
void setup() {
  size(640,360);
  walker = new Walker();
  background(255);
}
void draw() {
  walker.setup();
  walker.display();
}

 

以上是关于Processing3 1.随机行走的主要内容,如果未能解决你的问题,请参考以下文章

Unity行人随机行走不碰撞

醉汉随机行走/随机漫步问题(Random Walk Drunk Python)

播放随机声音而不重复

21个常用代码片段

Mecanim动画系统

PHP 代码片段