[ Video ]
[ About ]
glm::vec2をglm::vec3に置き換えるだけで簡単3Dへ
Replace glm::vec2 to glm::vec3.
[ Source ]
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 |
#pragma once #include "ofMain.h" #include "Particle.h" class ofApp : public ofBaseApp { public: void setup(); void update(); void draw(); void keyPressed(int key) {}; void keyReleased(int key) {}; void mouseMoved(int x, int y) {}; void mouseDragged(int x, int y, int button) {}; void mousePressed(int x, int y, int button) {}; void mouseReleased(int x, int y, int button) {}; void windowResized(int w, int h) {}; void dragEvent(ofDragInfo dragInfo) {}; void gotMessage(ofMessage msg) {}; ofEasyCam cam; int number_of_particle; vector<unique_ptr<Particle>> particles; }; |
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 |
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup() { ofSetFrameRate(60); ofSetWindowTitle("openFrameworks"); ofBackground(239); ofSetLineWidth(1.5); this->number_of_particle = 50; for (int i = 0; i < this->number_of_particle; i++) { auto particle = make_unique<Particle>(); this->particles.push_back(move(particle)); } } //-------------------------------------------------------------- void ofApp::update() { for (auto& particle : this->particles) { particle->update(this->particles); } } //-------------------------------------------------------------- void ofApp::draw() { this->cam.begin(); ofRotate(ofGetFrameNum() * 0.5); for (auto& particle : this->particles) { particle->draw(); } this->cam.end(); } //-------------------------------------------------------------- int main() { ofSetupOpenGL(720, 720, OF_WINDOW); ofRunApp(new ofApp()); } |
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 |
#pragma once #include "of Main.h" class Particle { public: Particle(); ~Particle(); void update(vector<unique_ptr<Particle>>& particles); void draw(); glm::vec3 separate(vector<unique_ptr<Particle>>& particles); glm::vec3 align(vector<unique_ptr<Particle>>& particles); glm::vec3 cohesion(vector<unique_ptr<Particle>>& particles); glm::vec3 seek(glm::vec3 target); void applyForce(glm::vec3 force); private: glm::vec3 location; glm::vec3 velocity; glm::vec3 acceleration; deque<glm::vec3> log; float range; float max_force; float max_speed; ofColor color; }; |
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
#include "Particle.h" Particle::Particle() { this->location = glm::vec3(ofRandom(-300, 300), ofRandom(-300, 300), ofRandom(-300, 300)); this->velocity = glm::vec3(ofRandom(-1, 1), ofRandom(-1, 1), ofRandom(-1, 1)); this->range = 40; this->max_force = 1; this->max_speed = 8; this->color = ofColor(39); } Particle::~Particle() { } void Particle::update(vector<unique_ptr<Particle>>& particles) { // 分離 glm::vec3 separate = this->separate(particles); this->applyForce(separate * 1.05); // 整列 glm::vec3 align = this->align(particles); this->applyForce(align); // 結合 glm::vec3 cohesion = this->cohesion(particles); this->applyForce(cohesion); // 境界 if (glm::length(this->location - glm::vec3()) > 300) { glm::vec3 area = this->seek(glm::vec3()); this->applyForce(area); } // 前進 this->velocity += this->acceleration; if (glm::length(this->velocity) > this->max_speed) { this->velocity = glm::normalize(this->velocity) * this->max_speed; } this->location += this->velocity; this->acceleration *= 0; this->velocity *= 0.9; this->log.push_front(this->location); while (this->log.size() > 80) { this->log.pop_back(); } } void Particle::draw() { ofSetColor(color); ofDrawSphere(this->location, 5); for (int i = 0; i < this->log.size() - 1; i++) { ofSetColor(color, ofMap(i, 0, this->log.size() - 1, 255, 0)); ofDrawLine(this->log[i], this->log[i + 1]); } } glm::vec3 Particle::separate(vector<unique_ptr<Particle>>& particles) { float tmp_range = this->range * 0.5; glm::vec3 result; glm::vec3 sum; int count = 0; for (auto& other : particles) { glm::vec3 difference = this->location - other->location; float len = glm::length(difference); if (len > 0 && len < tmp_range) { sum += glm::normalize(difference); count++; } } if (count > 0) { glm::vec3 avg = sum / count; avg = avg * this->max_speed; if (glm::length(avg) > this->max_speed) { avg = glm::normalize(avg) * this->max_speed; } glm::vec3 steer = avg - this->velocity; if (glm::length(steer) > this->max_force) { steer = glm::normalize(steer) * this->max_force; } result = steer; } return result; } glm::vec3 Particle::align(vector<unique_ptr<Particle>>& particles) { float tmp_range = this->range; glm::vec3 result; glm::vec3 sum; int count = 0; for (auto& other : particles) { glm::vec3 difference = this->location - other->location; float len = glm::length(difference); if (len > 0 && len < tmp_range) { sum += other->velocity; count++; } } if (count > 0) { glm::vec3 avg = sum / count; avg = avg * this->max_speed; if (glm::length(avg) > this->max_speed) { avg = glm::normalize(avg) * this->max_speed; } glm::vec3 steer = avg - this->velocity; if (glm::length(steer) > this->max_force) { steer = glm::normalize(steer) * this->max_force; } result = steer; } return result; } glm::vec3 Particle::cohesion(vector<unique_ptr<Particle>>& particles) { float tmp_range = this->range * 0.5; glm::vec3 result; glm::vec3 sum; int count = 0; for (auto& other : particles) { glm::vec3 difference = this->location - other->location; float len = glm::length(difference); if (len > 0 && len < tmp_range) { sum += other->location; count++; } } if (count > 0) { result = this->seek(sum / count); } return result; } glm::vec3 Particle::seek(glm::vec3 target) { glm::vec3 desired = target - this->location; float distance = glm::length(desired); desired = glm::normalize(desired); desired *= distance < this->range ? ofMap(distance, 0, this->range, 0, this->max_speed) : max_speed; glm::vec3 steer = desired - this->velocity; if (glm::length(steer) > this->max_force) { steer = glm::normalize(steer) * this->max_force; } return steer; } void Particle::applyForce(glm::vec3 force) { this->acceleration += force; } |