资源简介
本资源为OpenGL实现的源码,可用于OpenGL框架的搭建及绘制简单的图形。
代码片段和文件信息
// cgtest.cpp : Defines the entry point for the console application.
//
// test.cpp : 定义控制台应用程序的入口点。
//
//#include “stdafx.h“
#include “glut.h“
#include
#pragma comment (lib “glu32.lib“)
void myDisplay(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glRectf(-0.5f -0.5f 0.5f 0.5f);
glFlush();
}
void drawPoints(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POINTS);
glVertex2f(0.0f 0.0f);
glVertex2f(0.5f 0.0f);
glEnd();
glFlush();
}
void drawLine(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_LINES);
glVertex2f(0.0f 0.0f);
glVertex2f(0.5f 0.8);
glEnd();
glFlush();
}
void drawcircle()
{
int n = 200;
int i;
GLfloat R = 0.5f;
GLfloat Pi = 3.1415926536f;
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POL
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1228 2017-10-25 19:47 opengl\cgtest.cpp
文件 169984 1998-08-18 16:25 opengl\glut.dll
文件 21440 1998-08-18 16:24 opengl\glut.h
文件 79654 1998-08-18 16:25 opengl\glut.lib
文件 169984 1998-08-18 16:25 opengl\glut32.dll
文件 79898 1998-08-18 16:25 opengl\glut32.lib
目录 0 2017-11-23 14:30 opengl\
- 上一篇:Jpcap.dll 64位
- 下一篇:Oracle11g_win64安装包
相关资源
- opengl大作业 乡间小屋
- opengl建立的一个场景
- OpenGL - glfw库
- opengl安装文件
- opengl 库函数 GLAUX.LIB,GLU32.LIB,glut
- OpenGL三维坐标系绘图程序2.1版本
- 使用openGL绘制六角星
- OPENGL光照和纹理技术.rar
- source code for Computer Graphics - using Open
- OpenGL绘制二维自行车
- opengl读DEM数据的代码
- Qt Creator+opengl实现四元数鼠标控制轨迹
- 基于QOpenGLWidget类的图片贴图自适应显
- opengl建房子
- opengl绘制飘动的国旗效果源码
- 花瓶源码OpenGL
- OpenGL读取3DS文件 CLoad3ds类
- 基于OpenGL实现简单三维场景漫游
- 从文本文件读取控制点实现在OPENGL中
- 山东大学计算机图形学OpenGL拉普拉斯
- 山东大学计算机图形学OpenGL三维迷宫
- 机器人手臂的实现.zip
- opengl配置环境
- OpenGL画的小车
- OpenGL 课设
- OpenGL版打砖块配套库
- 导弹发射模拟源代码
- 基于OpenGL的三维分形树源代码
- OpenGL 开发的三维人体模型
- Qt OPenGL实现
评论
共有 条评论