?? skybox.h
字號:
//========================================================
/**
* @file SkyBox.h
*
* 項目描述: 3DS文件載入
* 文件描述: 天空盒類
* 適用平臺: Windows98/2000/NT/XP
*
* 作者: WWBOSS
* 電子郵件: wwboss123@gmail.com
* 創(chuàng)建日期: 2007-05-17
*
*
*/
//========================================================
#ifndef __SKYBOX_H__
#define __SKYBOX_H__
#include "stdafx.h"
#include "CBMPLoader.h"
#include "Vector.h"
#include "Camera.h"
#define GL_CLAMP_TO_EDGE 0x812F
/** 天空盒類 */
class CSkyBox
{
public:
/** 構(gòu)造函數(shù) */
CSkyBox();
~CSkyBox();
/** 初始化 */
bool init();
/** 渲染 */
void render();
private:
CBMPLoader m_texture[5]; /**< 天空盒紋理 */
Vector3 m_CameraPos; /**< 當(dāng)前攝像機(jī)位置 */
float length; /**< 長度 */
float width; /**< 寬度 */
float height; /**< 高度 */
float yRot; /**< 繞Y軸旋轉(zhuǎn) */
};
#endif ///__SKYBOX_H__
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -