//-------------------------------------------------------------- void ofApp::draw(){ // 배경 검정색. ofBackground(100, 100, 25); ofPushMatrix(); // 마우스에 따라 이동 ofTranslate(-ofGetMouseX() * (scale - 0.5), -ofGetMouseY() * (scale - 0.5)); // 각 이미지 디스플레이 for (int i=0; i<imagePoints.size(); i++) { float x = ofMap(imagePoints[i][0], 0, 1, 0, scale * ofGetWidth()); float y = ofMap(imagePoints[i][1], 0, 1, 0, scale * ofGetHeight()); // 이미지 디스플레이 ofSetColor(255,255,255); images[i].draw(x, y, imageSize * images[i].getWidth(), imageSize * images[i].getHeight()); ...