资源简介
真实感图形的例子,可以移动点光源产生阴影变化
代码片段和文件信息
/* Copyright (c) Mark J. Kilgard 1994. */
#include
#include
#include
#include
#define TORUS 0
#define TEAPOT 1
#define DOD 2
#define TET 3
#define ISO 4
#define QUIT 5
static int spin = 0;
static int obj = TORUS;
static int begin;
void
menu_select(int item) //定义选择菜单
{
if (item == QUIT)
exit(0);
obj = item;
glutPostRedisplay();
}
/* ARGSUSED2 */
void
movelight(int button int state int x int y)
{
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN) {
begin = x;
}
}
/* ARGSUSED1 */
void
motion(int x int y)
{
spin = (spin + (x - begin)) % 360;
begin = x;
glutPostRedisplay();
}
void
myinit(void)
{
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glDepthFunc(GL_LESS);
glEnable(GL_DEPTH_TEST);
}
/* Here is where the light position is reset after the modeling
* transformation (glRotated) is called. This places the
* light at a new position in world coordinates. The cube
* represents the position of the light.
*/
void
display(void)
{
GLfloat position[] =
{0.0 0.0 1.5 1.0};
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glTranslatef(0.0 0.0 -5.0);
glPushMatrix();
glRotated((GLdouble) spin 0.0 1.0 0.0);
glLightfv(GL_LIGHT0 GL_POSITION position);
glTranslated(0.0 0.0 1.5);
glDisable(GL_LIGHTING);
glColor3f(0.0 1.0 1.0);
glutWireCube(
- 上一篇:仓库管理系统分别通过数据库实现和文件实现,含流程图
- 下一篇:用C语言编写二叉排序树
相关资源
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- C++ mqtt 用法
- 商品库存管理系统 C++ MFC
- 安卓c语言开发SDL2+opengles
- c++ 多功能计算器
- C++17 In Detail
- 嵌入式QtC++编程课件
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- 交互式计算机图形学 第六版 OpenGL源代
评论
共有 条评论