码迷,mamicode.com
首页 > 其他好文 > 详细

【openGL】画圆

时间:2016-09-12 20:34:35      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdafx.h"
#include <GL/glut.h>
#include <stdlib.h>
#include <math.h>
#include <stdio.h>

const int n = 50;
const GLfloat R = 0.5f;
const GLfloat PI = 3.24250265357f;
void myDisplay(void) {
    glClear(GL_COLOR_BUFFER_BIT);
    glBegin(GL_POLYGON);
    for (int i = 0; i<n; i++) {
        glVertex2f(R*cos(2 * PI / n*i), R*sin(2 * PI / n*i));
    }
    glEnd();
    glFlush();
}

int main(int argc, char *argv[]) {
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);
    glutInitWindowPosition(100, 100);
    glutInitWindowSize(500, 500);
    glutCreateWindow("OpenGL画圆程序");
    glutDisplayFunc(&myDisplay);
    glutMainLoop();
    return 0;
}

运行结果如下图所示:

技术分享

 

【openGL】画圆

标签:

原文地址:http://www.cnblogs.com/dragonir/p/5865858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!