まずは、以下の2つのコードを見て下さい。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | int MAX = 20; int count = 0; Circle[] circles = new Circle[MAX]; void setup() { size(300,300); smooth(); for (int i = 0; i < MAX; i++) { circles[i] = new Circle(); } } void draw() { background(150); for (int i = 0; i < MAX; i++) { circles[i].update(); } } void mousePressed() { circles[count].x = mouseX; circles[count].y = mouseY; circles[count].radius = 30.0; count ++; if(count >= MAX) count = 0; } class Circle { float x; float y; float radius; float xspeed; float yspeed; Circle() { xspeed = random(-0.5,0.5); yspeed = random(-0.5,0.5); x = width/2; y = height/2; radius = 30.0; } void update() { if (radius > 0) radius+=random(-1.0, 1.0); x += xspeed; y += yspeed; noStroke(); fill(0); ellipse(x,y,radius,radius); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | // 円の生成のサンプル int MAX = 20; //円の最大値 int count = 0; //マウスクリックによって生まれる円の番号 //Circleクラスのcirclesオブジェクトを宣言 Circle[] circles = new Circle[MAX]; void setup() { size(300,300); smooth(); // circlesオブジェクトの生成と配列の初期化 for (int i = 0; i < MAX; i++) { circles[i] = new Circle(); } } void draw() { background(150); //常にcircles[]を更新 for (int i = 0; i < MAX; i++) { circles[i].update(); } } //マウスクリックによるイベント void mousePressed() { circles[count].x = mouseX; //circlesのx座標をマウスのxに変更 circles[count].y = mouseY; //circlesのy座標をマウスのyに変更 circles[count].radius = 30.0; //円の直径を設定 count ++; //順番に更新 if(count >= MAX) count = 0; } // Circle クラスを作成 ////////////////////////////////////////////////////////// class Circle { float x; //円のx座標 float y; //円のy座標 float radius; //円の直径 float xspeed; //x軸方向のスピード float yspeed; //y軸方向のスピード //初期化用のメソッド(コンストラクタ) Circle() { xspeed = random(-0.5,0.5); //スピードと方向をランダムに作成 yspeed = random(-0.5,0.5); //スピードと方向をランダムに作成 x = width/2; //x,yは画面の中心に設定 y = height/2; radius = 30.0; //円の直径を設定 } //円の描画更新用メソッド void update() { //円の直径をランダムに変化させる if (radius > 0) radius+=random(-1.0, 1.0); // speedで設定された値を足す x += xspeed; y += yspeed; noStroke(); fill(0); ellipse(x,y,radius,radius); //円を描画 } } ////////////////////////////////////////////////////////// |
2つのコードは同じものですが、どちらが分かりやすいかは一目瞭然でしょう。
これは極端な例ですが、それぐらい、コードの読みやすさというのは重要なのです。
読みにくいコードは、自分で書いていても読む気がなくなってきます。制作者のモチベーションにも大きな影響を与えます。
特に注意して欲しいところは、インデント(tabキーで行なう)です。{}(ブレース)で閉じるところは縦の位置を合わせて書くのが一般的です。結構忘れがちですが、コードが複雑になればなるほど分からなくなってくるので気をつけて下さい。
なるべく我流でやらずに、他の人のコードも参考にしながら読みやすいコードを書くということは忘れないで下さい。