📄 our_moudle.h
字号:
/**************************************************************************
Copyright (C) jianbo miao Corporation. All Rights Released.
this is a 3d engin named our_3d_engin.
our_3d_engin feature:
1:there is no float.
2:it do the 3d things all by softwear.
3:base on 1 and 2 , it can execution on arm which have no 3d hardwear accelerate.
if you have any suggestion or question,pls contact with me
mail:miaojb@126.com
msn:miaojianbo@hotmail.com
qq:30209027
2008/01/01
***************************************************************************/
#ifndef OUR_MOUDLE_H
#define OUR_MOUDLE_H
#include "our_cpu.h"
//========================================================================
typedef struct OUR_MOUDLE_INFO
{
UINT point_num; //how many points the obj have
UINT triangle_num; //how many triagles the obj have
short* point_data;
short* triangle_data;
int* UV_data;
char* material;
} OUR_MOU_INFO ,*OUR_MOU_INFO_PTR;
//========================================================================
//========================================================================
//========================================================================
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -