元Webデザイナー兼コーダーの備忘録

学びを形に:プログラミングとウェブデザインの勉強メモ

 メニュー

お知らせ:2025.1.15 サイトマップを更新しました

Processing|PVectorと加速度

The Nature of Code(PDF版)からPVectorについて取り上げます。PVectorを用いた加速度の書き方を学びます。Processingでプログラムを書いて、動作を確認します。動作を確認できるところがProcessingの楽しいところです。

加速度(acceleration)

以下の3つの加速度について見ていきますが、この記事では「一定な加速」と「ランダムな加速」について書きます。

  • 一定な加速
  • ランダムな加速
  • マウスに向かう加速

一定な加速

参考例は、PVectorと速度と加速度#PVectorを用いた加速度の例で紹介したプログラムです。そちらに加筆したものを再掲します。

  1. //Vector Motion: Acceleration
  2. //A constant acceleration
  3. class Mover{
  4. PVector location;
  5. PVector velocity;
  6. PVector acceleration;
  7. float topspeed;
  8. //初期化・コンストラクタ
  9. Mover(){
  10. location = new PVector(width/2, height/2);
  11. velocity = new PVector(0, 0);
  12. acceleration = new PVector(-0.001, 0.01);
  13. topspeed = 10;
  14. }
  15. //ボールの位置の更新
  16. void update(){
  17. velocity.add(acceleration);
  18. velocity.limit(topspeed);
  19. location.add(velocity);
  20. }
  21. //ボールの描画
  22. void display(){
  23. stroke(0);
  24. fill(175);
  25. ellipse(location.x, location.y, 16, 16);
  26. }
  27. //ボールがウィンドウから外れたときの処理
  28. void checkEdges(){
  29. if(location.x > width){
  30. location.x = 0;
  31. }else if(location.x < 0){
  32. location.x = width;
  33. }
  34. if(location.y > height){
  35. location.y = 0;
  36. }else if(location.y < 0){
  37. location.y = height;
  38. }
  39. }
  40. }
  41. Mover mover;
  42. void setup(){
  43. size(200, 200);
  44. smooth();
  45. mover = new Mover();
  46. }
  47. void draw(){
  48. background(255);
  49. mover.update();
  50. mover.checkEdges();
  51. mover.display();
  52. }

プログラムの解説

ボールの初期位置はウィンドウの中央で、速度は0で初期化しています。ボールの動きは、加速度で制御しています。以下のように加速度を初期化しています。

  1. acceleration = new PVector(-0.001, 0.01);

x成分がマイナス、y成分がプラスなので、ボールは左下に動き出します。

一定な加速を実現している箇所は、以下です。

  1. void update(){
  2. velocity.add(acceleration); //一定な値を足す
  3. velocity.limit(topspeed);
  4. location.add(velocity);
  5. }

ランダムな加速

以下は、ランダムな加速の参考例です。

  1. //velocity and random acceleration
  2. class Mover{
  3. PVector location;
  4. PVector velocity;
  5. PVector acceleration;
  6. float topspeed;
  7. Mover(){
  8. location = new PVector(random(width/2), random(height/2));
  9. velocity = new PVector(0, 0);
  10. acceleration = new PVector(-0.001,0.01);
  11. topspeed = 10;
  12. }
  13. void update(){
  14. acceleration = PVector.random2D(); //ランダムな方向の加速度ベクトルの生成
  15. acceleration.mult(0.5);
  16. //acceleration.mult(random(2));
  17. velocity.add(acceleration);
  18. velocity.limit(topspeed);
  19. location.add(velocity);
  20. }
  21. void display(){
  22. stroke(0);
  23. fill(175);
  24. ellipse(location.x, location.y, 16, 16);
  25. }
  26. void checkEdges(){
  27. if(location.x > width){
  28. location.x = 0;
  29. }else if(location.x < 0){
  30. location.x = width;
  31. }
  32. if(location.y > height){
  33. location.y = 0;
  34. }else if(location.y < 0){
  35. location.y = height;
  36. }
  37. }
  38. }
  39. Mover mover;
  40. void setup(){
  41. size(200, 200);
  42. smooth();
  43. mover = new Mover();
  44. }
  45. void draw(){
  46. background(255);
  47. mover.update();
  48. mover.checkEdges();
  49. mover.display();
  50. }

プログラムの解説・メモ

update()メソッドが呼ばれるたびにPVector.random2D()が実行され、ランダムな方向の加速度ベクトルが生成されます。

  1. void update(){
  2. acceleration = PVector.random2D(); //ランダムな方向の加速度ベクトルの生成
  3. acceleration.mult(0.5);
  4. //acceleration.mult(random(2));
  5. velocity.add(acceleration);
  6. velocity.limit(topspeed);
  7. location.add(velocity);
  8. }

acceleration.mult(0.5)により、加速度を一定な値に拡大・縮小します。また、acceleration.mult(random(2))とすると、加速度をランダムな値に拡大・縮小します。

  • メモ
    • random2D():ランダムな方向を指す単位ベクトル(PVector)の生成

PVector.random2D()について

PVector.random2D()が、どのような値をとるのか確認します。 リファレンスによるとrandom2D()は、ランダムな方向を指す単位ベクトルを生成するとあるので、ベクトルの各成分と大きさの値を確認します。

  1. //PVector.random2D()の確認
  2. PVector a;
  3. void setup(){}
  4. void draw(){
  5. a = PVector.random2D();
  6. println("X成分:" + a.x + ", Y成分:" + a.y + ", ベクトルの大きさ:" + a.mag());
  7. }

以下のように表示されます。

X成分:0.6566855, Y成分:0.7541646, ベクトルの大きさ:1.0
X成分:0.018682899, Y成分:0.9998255, ベクトルの大きさ:1.0
X成分:0.9673977, Y成分:-0.25326216, ベクトルの大きさ:1.0
...

ランダムな方向を指す単位ベクトルが生成されたのが確認できます。

ランダムな加速について

PVector.random2D()で生成したベクトルをランダムな大きさにスケーリングするコードの動作を確認します。ベクトルの各成分と大きさの値を確認します。

  1. PVector a;
  2. void setup(){}
  3. void draw(){
  4. a = PVector.random2D();
  5. a.mult(random(2));
  6. println("X成分:" + a.x + ", Y成分:" + a.y + ", ベクトルの大きさ:" + a.mag());
  7. }

以下のように表示されます。

X成分:1.2355235, Y成分:0.5456939, ベクトルの大きさ:1.3506665
X成分:-0.49935597, Y成分:-0.86013436, ベクトルの大きさ:0.9945791
X成分:-0.8679856, Y成分:-0.989225, ベクトルの大きさ:1.3160415
...

ベクトルの大きさがランダムにスケーリングされたのが確認できます。

まとめ

The Nature of Code(PDF版)からPVectorについて取り上げました。PVectorを用いた加速度の書き方を学びました。引き続き、The Nature of Code(PDF版)の内容を勉強します。

参考サイト

» Processingの記事一覧はこちらです。