⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 draw.h

📁 allows the user to select files containing objects and draw them using one of the available project
💻 H
字号:
#ifndef DRAW_H_
#define DRAW_H_

#define STRICT
#include <windows.h>

#include "matrix.h"
#include "object.h"


/*
 * Sets the window and the viewport
 */
void DrawSetTransformation (const RECT *pWindow, const RECT *pViewport);

/*
 * Sets the projection type.
 */
void DrawSetProjection (const MATRIX_4x4 proj);


/*
 * Draws the object using the main projection.
 */
void DrawObject (HDC hDC, const POBJECT_3D pObject);


#endif /* DRAW_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -