2009年12月26日 星期六
Qt使用OpenGL
paintGL()畫圖
initializeGL()初始化
resizeGL( int width, int height )
glBegin(GL_TRIANGLES);//开始绘制三角形
glColor3f( 1.0, 0.0, 0.0 );//上色,red
glVertex3f( 0.0f, 1.0f, 0.0f);//3角形第一點
//glTranslatef(x, y, z),x, y, z是相对与您当前所在点的位移
glColor3f( 0.0, 1.0, 0.0 );//上色,green
glVertex3f(-1.0f,-1.0f, 0.0f);//3角形第2點
glColor3f( 0.0, 0.0, 1.0 );//上色,blue
glVertex3f( 1.0f,-1.0f, 0.0f);//3角形第3點
glEnd();//END三角形绘制结束。
glBegin( GL_QUADS ); //开始绘制4邊行
glColor3f( 0.0, 1.0, 0.0 );
glVertex3f( 1.0, 1.0, -1.0 );
glVertex3f( -1.0, 1.0, -1.0 );
glVertex3f( -1.0, 1.0, 1.0 );
glVertex3f( 1.0, 1.0, 1.0 );
glEnd();
read more...
2009年12月25日 星期五
QT撰寫的linplayer v0.050多媒體播放器釋出
增加播放VCD CD 圖片,全螢幕...............
OS是64位元ubuntu910,其他相近LINUX OS 64位元版本亦適用.
OS是32位元ubuntu904,其他相近LINUX OS 32位元版本亦適用.
位置:
http://sites.google.com/site/yplinlinux/
read more...
2009年12月23日 星期三
2009年12月18日 星期五
2009年12月6日 星期日
QT撰寫的linplayer v0.016 多媒體播放器發佈.
可播放網路電視,網路廣播,本地音樂,本地影片
版本v0.016 ,支援多種格式, 目前大部分基本功能都具備了,下一版希望能增加更多功能.
下載位置:
http://sites.google.com/site/yplinlinux/
read more...
2009年12月3日 星期四
訂閱:
文章 (Atom)