[Android/안드로이드] OpenGL 기초 APIs ( Rotation, LoadIdentity, ColorPointer, Enable )
안녕하세요 돼지왕 왕돼지입니다. 오늘은 Android에서 사용하는 OpenGL 의 기초 APIs 중 Rotation, LoadIdentity, ColorPointer, Enable 에 대해 알아보겠습니다. gl.glRoatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z); - (x, y, z) vector를 기준으로 angle만큼 rotate. 여기서 angle 단위는 degree. - 현재의 Matrix Mode에 곱해진다. ( ModelView 혹은 Projection ) - rotation 방향은 right-hand rule을 따른다. ( ex) (x,y,z)가 user를 향하면 방향은 counterclockwise) gl.glLoadIdentity(); -..
2012. 2. 14.