OpenFrameworks 참고할 만한 책

|

이 책은 프로세싱과 아뒤노 그리고 오픈프레임웍스에대한 소개로 이루어져 있다.
고급기술서적은 아니지만 프로세싱과 아뒤노 그리고 오픈프레임웍스에대한 기본 사용설명서정도로 이해하면 좋은것 같다.

오픈프레임웍스 관련석적이 없기때문에 이 책을 참고하여 공부를 하면 될거 같다.
하지만 영어라는거..ㅠㅠ



And

스터디 진행 할 것들.

|
프로세싱을 위한 openGL

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;
}
프로세싱을 위한 AR

프로세싱 PVector

프로세싱 nature of code

Open Frameworks == 

And

Algorithms for Visual Design Using the Processing Language

|

프로세싱 관련하여 새로운 책이 발간 되었다.

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
And
prev | 1 | ··· | 7 | 8 | 9 | 10 | 11 | 12 | 13 | ··· | 40 | next