用opengl做的折线图和直方图

ContractedBlock.gifC
ContractedBlock.gif ExpandedBlockStart.gif Code
#include <GL/glut.h>

//初始化窗口大小
GLsizei winWidth =600,winHeight=600
GLint xRaster
=25,yRaster=150;
GLubyte label[
36]={'J','a','n',    'F','e','b',   'M','a','r'
'A','p','r',     'M','a','y',   'J','u','n',
'J','u','l',      'A','u','g',    'S','e','p',
'O','c','t',      'N','o','v',     'D','e','c'};
GLint dataValue[
12]={420,342,324,310,262,185,190,196,217,240,312,438};
void init(void)
{
    glClearColor(
1.0,1.0,1.0,1.0);
    glMatrixMode(GL_PROJECTION);
    gluOrtho2D(
0.0,600.0,0.0,500.0);
}

void lineGraph(void)
{
    GLint month,k;
    GLint x
=30;
    glClear(GL_COLOR_BUFFER_BIT);
    glColor3f(
1.0,0.0,0.0);
    
for (k=0;k<12;k++)
    {
        glRecti(
20+k*50,165,40+k*50,dataValue[k]);
    }


    glColor3f(
0.0,0.0,1.0);
    glBegin(GL_LINE_STRIP);
    
for (k=0;k<12;k++)
    {
        glVertex2i(x
+k*50,dataValue[k]);
    }
    glEnd();

    glColor3f(
1.0,0.0,0.0);
    
for (k=0;k<12;k++)
    {
        glRasterPos2i(xRaster
+k*50,dataValue[k]-4);
        glutBitmapCharacter(GLUT_BITMAP_9_BY_15,
'*');
    }

    glColor3f(
0.0,0.0,0.0);
    xRaster
=20;
    
for (month=0;month<12;month++)
    {
        glRasterPos2i(xRaster,yRaster);
        
for (k=3*month;k<3*month+3;k++)
        {
            glutBitmapCharacter(GLUT_BITMAP_HELVETICA_12,label[k]);
        }
        xRaster
+=50;
    }
    glFlush();
}


void winReshapeFcn(int newWidth,int newHeight)
{
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    gluOrtho2D(
0.0,(GLdouble)newWidth,0.0,(GLdouble)newHeight);
    glClear(GL_COLOR_BUFFER_BIT);
}

void main( int  argc,char** argv)
{
    glutInit(
&argc,argv);
    glutInitDisplayMode(GLUT_SINGLE 
| GLUT_RGB);
    glutInitWindowPosition(
100,100);
    glutInitWindowSize(winWidth,winHeight);
    glutCreateWindow(
"Line Chart Data Plot");

    init();
    glutDisplayFunc(lineGraph);
    glutReshapeFunc(winReshapeFcn);

    glutMainLoop();


转载于:https://www.cnblogs.com/lizhi0320/archive/2009/07/25/1531050.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值