• 大小: 6KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: C/C++
  • 标签: 代码  

资源简介

杭州电子科技大学计算机图形学3d图形——茶壶(含花纹,阴影)实验

资源截图

代码片段和文件信息


#include
#include
using namespace std;
GLfloat roate = 0.0;// set rote of roate ying yu bu hao  bu zhuang le 设置旋转速率
GLfloat rote = 0.0;//shezhi旋转角度
GLfloat anglex = 0.0;//X 轴旋转
GLfloat angley = 0.0;//Y 轴旋转
GLfloat anglez = 0.0;//Z 轴旋转
GLint WinW = 400;
GLint WinH = 400;
GLfloat oldx;//当左键按下时记录鼠标坐标  
GLfloat oldy;

float xrot;
#define stripeImageWidth 64
GLubyte stripeImage[3 * stripeImageWidth];
void init(void)
{
//材质反光性设置
GLfloat mat_specular[] = { 1.0 1.0 1.0 1.0 };  //镜面反射参数
GLfloat mat_shininess[] = { 50.0 };               //高光指数
GLfloat light_position[] = { 1.0 1.0 1.0 0.0 };
GLfloat white_light[] = { 1.0 1.0 1.0 1.0 };   //灯位置(111) 最后1-开关
GLfloat Light_Model_Ambient[] = { 0.2 0.2 0.2 1.0 }; //环境光参数

glClearColor(0.

评论

共有 条评论