[work 98] Rainbow

[work 98] Rainbow

Movie

Source code

about

  • 太線を引く
  • 彩度を減らしていって最後は白になるようにする

file

  • 上部にあるファイル名が表示されているボタンを押すと、表示されるファイルが切り替わります
  • 別ウィンドウ表示したい時や行番号などが無いRawMode表示したい時は、コード内右上のボタンを押してください(ボタンはマウスオーバーすると表示されます)
#include "ofMain.h"
#include "ofApp.h"

//================================
int main( ){

    // 4K:4096x2160
    // 2K:2048x1080
    // FullHD:1920x1080
    // HD:1440x1080
    // HD720p:1280x720
    // DVD:720x480
    // setup the GL context
    ofSetupOpenGL(1280, 720, OF_WINDOW);

	// this kicks off the running of my app
	// can be OF_WINDOW or OF_FULLSCREEN
	// pass in width and height too:
	ofRunApp( new ofApp());

}
#pragma once

#include "ofMain.h"



class ofApp : public ofBaseApp{
public:
    ofApp();
    ~ofApp();
    
    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 mouseEntered(int x, int y);
    void mouseExited(int x, int y);
    void windowResized(int w, int h);
    void dragEvent(ofDragInfo dragInfo);
    void gotMessage(ofMessage msg);
    
private:
    float velocity;
    float time;
    float radius;
    ofVec2f startLoc;
    ofVec2f location;
    ofColor color;
    float decayS;
    
    ofFbo fbo;
};
#include "ofApp.h"


ofApp::ofApp(){
    
}

ofApp::~ofApp(){
    
}

//--------------------------------------------------------------
void ofApp::setup(){
    double fps = 30;
    
    ofSetFrameRate(fps);
    ofBackground(0);
    ofSetBackgroundAuto(true);
    ofSetVerticalSync(true);
    
    ofSetCircleResolution(100);
    velocity = 4;
    time = 0;
    radius = 50;
    startLoc = ofVec2f(200, 150);
    location = startLoc;
    color.setHsb(ofRandom(255), 255, 255);
    decayS = 1.5;
    
    fbo.allocate(ofGetWidth(), ofGetHeight(), GL_RGBA, 4);
    fbo.begin();
    ofColor(0);
    fbo.end();
}

//--------------------------------------------------------------
void ofApp::update(){
    fbo.begin();
    ofSetColor(color);
    ofDrawCircle(location, radius);
    fbo.end();
    
    location.x += velocity;
    location.y = startLoc.y + ofMap(ofSignedNoise(time), -1, 1, -150, 150);
    float s = color.getSaturation();
    color.setSaturation(s - decayS);
    
    if (location.x > ofGetWidth() - 200 || s <= 0) {
        time = 0;
        startLoc.y += radius;
        location = startLoc;
        color.setHsb(ofRandom(255), 255, 255);
    }
    
    time += 0.01;
}

//--------------------------------------------------------------
void ofApp::draw(){
    fbo.draw(0, 0);
}

//--------------------------------------------------------------
void ofApp::keyPressed(int key){
    if (key == 's') {
        ofImage img;
        img.grabScreen(0, 0, ofGetWidth(), ofGetHeight());
        img.save("screenshot.png");
    }
}

Link to the reference page

ソースコードで使用したAPIの中から要点になりそうなものをいくつか選んでリストアップしました。

categoryAPI/Lib
openframeworksofColor
openframeworksofSetCircleResolution

Development environment

  • openframeworks 0.10.1
  • c++
  • macOS
  • Xcode