[ Video ]
[ About ]
色の竜巻。
[ Source ]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#pragma once #include "ofMain.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; ofMesh face, line; }; |
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 |
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup() { ofSetFrameRate(25); ofSetWindowTitle("openframeworks"); ofBackground(239); ofSetLineWidth(2); ofEnableDepthTest(); this->line.setMode(ofPrimitiveMode::OF_PRIMITIVE_LINES); } //-------------------------------------------------------------- void ofApp::update() { ofSeedRandom(39); this->face.clear(); this->line.clear(); auto radius = 00; auto deg_width = 3; auto deg_span = 6; auto height_span = 10; auto max_height = 1000; ofColor face_color, line_color; for (radius = 100; radius <= 300; radius += 25) { ofColor color; color.setHsb(ofMap(radius, 100, 300, 0, 255), 130, 255); face_color = ofColor(color); line_color = ofColor(0); auto frame_step = 0.03; auto threshold = 0.25; for (auto deg_start = 0; deg_start < 360; deg_start += deg_width + 1) { auto deg = deg_start; auto noise_seed = ofRandom(1000); for (auto height = 0; height < max_height; height += height_span) { auto prev_noise_value = ofNoise(noise_seed * cos(deg_start * DEG_TO_RAD) * 0.005, noise_seed * sin(deg_start * DEG_TO_RAD) * 0.005, (height - height_span) * 0.002 + ofGetFrameNum() * frame_step); auto noise_value = ofNoise(noise_seed * cos(deg_start * DEG_TO_RAD) * 0.005, noise_seed * sin(deg_start * DEG_TO_RAD) * 0.005, height * 0.002 + ofGetFrameNum() * frame_step); auto next_noise_value = ofNoise(noise_seed * cos(deg_start * DEG_TO_RAD) * 0.005, noise_seed * sin(deg_start * DEG_TO_RAD) * 0.005, (height + height_span) * 0.002 + ofGetFrameNum() * frame_step); if (noise_value < threshold) { this->face.addVertex(glm::vec3(radius * cos((deg)*DEG_TO_RAD), height, radius * sin((deg)*DEG_TO_RAD))); this->face.addVertex(glm::vec3(radius * cos((deg + deg_width) * DEG_TO_RAD), height, radius * sin((deg + deg_width) * DEG_TO_RAD))); this->face.addVertex(glm::vec3(radius * cos((deg + deg_span + deg_width) * DEG_TO_RAD), height + height_span, radius * sin((deg + deg_span + deg_width) * DEG_TO_RAD))); this->face.addVertex(glm::vec3(radius * cos((deg + deg_span) * DEG_TO_RAD), height + height_span, radius * sin((deg + deg_span) * DEG_TO_RAD))); this->line.addVertex(glm::vec3(radius * cos((deg)*DEG_TO_RAD), height, radius * sin((deg)*DEG_TO_RAD))); this->line.addVertex(glm::vec3(radius * cos((deg + deg_width) * DEG_TO_RAD), height, radius * sin((deg + deg_width) * DEG_TO_RAD))); this->line.addVertex(glm::vec3(radius * cos((deg + deg_span + deg_width) * DEG_TO_RAD), height + height_span, radius * sin((deg + deg_span + deg_width) * DEG_TO_RAD))); this->line.addVertex(glm::vec3(radius * cos((deg + deg_span) * DEG_TO_RAD), height + height_span, radius * sin((deg + deg_span) * DEG_TO_RAD))); for (int i = 0; i < 4; i++) { this->face.addColor(face_color); this->line.addColor(line_color); } this->face.addIndex(this->face.getNumVertices() - 1); this->face.addIndex(this->face.getNumVertices() - 2); this->face.addIndex(this->face.getNumVertices() - 3); this->face.addIndex(this->face.getNumVertices() - 1); this->face.addIndex(this->face.getNumVertices() - 3); this->face.addIndex(this->face.getNumVertices() - 4); this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 4); this->line.addIndex(this->line.getNumVertices() - 2); this->line.addIndex(this->line.getNumVertices() - 3); if (height >= max_height - height_span || next_noise_value > threshold) { this->line.addIndex(this->line.getNumVertices() - 1); this->line.addIndex(this->line.getNumVertices() - 2); } if (height < height_span || prev_noise_value > threshold) { this->line.addIndex(this->line.getNumVertices() - 3); this->line.addIndex(this->line.getNumVertices() - 4); } } deg += deg_span; } } } } //-------------------------------------------------------------- void ofApp::draw() { this->cam.begin(); ofRotateX(180); ofTranslate(0, -500, 0); this->face.drawFaces(); this->line.drawWireframe(); this->cam.end(); /* int start = 220; if (ofGetFrameNum() > start) { ostringstream os; os << setw(4) << setfill('0') << ofGetFrameNum() - start; ofImage image; image.grabScreen(0, 0, ofGetWidth(), ofGetHeight()); image.saveImage("image/cap/img_" + os.str() + ".jpg"); if (ofGetFrameNum() - start >= 25 * 20) { std::exit(1); } } */ } //-------------------------------------------------------------- int main() { ofSetupOpenGL(720, 720, OF_WINDOW); ofRunApp(new ofApp()); } |