'분류 전체보기'에 해당되는 글 119건
- 2009.08.20 [P5] 1.06 update
- 2009.08.19 [CV] openCV 와 JMyron frameRate 비교 - (Processing)
- 2009.08.18 [vvvv] vvvv 코리아를 소개합니다.
- 2009.08.15 [SE] Sharing Experiences 2009 - workshop tutorial(Processing)
- 2009.08.15 [OF] 오픈프레임웍스를 소개합니다. 2
- 2009.08.15 제 1회 BlackBerry 어플리케이션 개발 경진대회
- 2009.08.07 Random color Block
- 2009.08.06 OpenFrameworks 참고할 만한 책 1
- 2009.07.24 스터디 진행 할 것들.
- 2009.07.16 Algorithms for Visual Design Using the Processing Language
PROCESSING 1.0.6 (REV 0168) - 12 August 2009 Bug fixes and minor changes. Most important are replacement JOGL libraries so that OpenGL applets won't present an "expired certificate" error. [ bug fixes ] + Replaced the faulty JOGL library that had expired certificates (Sun bug). http://dev.processing.org/bugs/show_bug.cgi?id=1271 https://jogl.dev.java.net/servlets/ProjectDocumentList?folderID=9260&expandFolder=9260&folderID=0 + Updated the Linux launcher script that enables Processing to be run from other directories, symlinks, or from launch items. http://dev.processing.org/bugs/show_bug.cgi?id=825 Thanks to Ferdinand Kasper for the fix! + strokeWeight() was making lines 2x too thick with P2D http://dev.processing.org/bugs/show_bug.cgi?id=1283 + PImage.getImage() setting the wrong image type http://dev.processing.org/bugs/show_bug.cgi?id=1282 + image() not working with P2D, P3D, and OPENGL when noFill() used http://dev.processing.org/bugs/show_bug.cgi?id=1299 http://dev.processing.org/bugs/show_bug.cgi?id=1222 + Auto format problem with program deeper then 10 levels http://dev.processing.org/bugs/show_bug.cgi?id=1297 + Fixed a crash on startup problem (console being null) + Recursive subfolder copy of library folders when exporting application http://dev.processing.org/bugs/show_bug.cgi?id=1295 [ changes ] + PDF member functions set protected instead of private http://dev.processing.org/bugs/show_bug.cgi?id=1276 + On OS X, update Info.plist to be 32/64 explicit and also updated JavaApplicationStub for update 4. + Clicking the preferences location in the Preferences window will now open the parent folder for the preferences file. http://dev.processing.org/bugs/show_bug.cgi?id=1279 + Update to Java 6 update 15 for the Windows and Linux releases. [ fixed earlier ] + Mangled menu text with Java 6u10. http://dev.processing.org/bugs/show_bug.cgi?id=1065
made with openFrameworks from openFrameworks on Vimeo.
//--------------------------------------------------------------
void testApp::setup(){
ofBackground(0, 0, 0); // background color setting 0~255 (R, G, B)
ofEnableSmoothing();
ofSetRectMode(OF_RECTMODE_CORNER);
ofSetCircleResolution(11);
}
//--------------------------------------------------------------
void testApp::update(){
}
//--------------------------------------------------------------
void testApp::draw(){
ofFill();
for( int i = 0; i < ofGetWidth(); i++){
for(int j = 0; j < ofGetHeight(); j++){
ofSetColor(ofRandom(0, 255), ofRandom(0, 255), ofRandom(0, 255));
//ofCircle(ofRandom(0, ofGetWidth()), ofRandom(0,ofGetHeight()), 30);
//ofEllipse(i*50, j* 50, 50, 50);
ofRect(i*50, j*50, 50, 50);
}
}
}
import javax.media.opengl.*; import processing.opengl.*; float a; void setup() { size(800, 600, OPENGL); } void draw() { background(255); PGraphicsOpenGL pgl = (PGraphicsOpenGL) g; // g may change GL gl = pgl.beginGL(); // always use the GL object returned by beginGL // Do some things with gl.xxx functions here. // For example, the program above is translated into: gl.glColor4f(0.7, 0.7, 0.7, 0.8); gl.glTranslatef(width/2, height/2, 0); gl.glRotatef(a, 1, 0, 0); gl.glRotatef(a*2, 0, 1, 0); gl.glRectf(-200, -200, 200, 200); gl.glRotatef(90, 1, 0, 0); gl.glRectf(-200, -200, 200, 200); pgl.endGL(); a += 0.5; }
Product Details
- Hardcover: 384 pages
- Publisher: Wiley (May 11, 2009)
- Language: English
- ISBN-10: 0470375485
- ISBN-13: 978-0470375488
- Product Dimensions: 9.4 x 7.5 x 1 inches