コード例 #1
0
ファイル: Player.java プロジェクト: WalloffDev/Walloff
 /* draw the character and the tail */
 public void Draw(GL10 gl) {
   gl.glPushMatrix();
   gl.glTranslatef(x_pos, y_pos, z_pos);
   m_sphere.draw(gl);
   gl.glPopMatrix();
   gl.glPushMatrix();
   m_tail.draw(gl);
   gl.glPopMatrix();
 }