lwo2types.h

来自「最新osg包」· C头文件 代码 · 共 66 行

H
66
字号
/****************************************************************************	Basic data types used in LWO2 files	Copyright (C) 2002-2003 Marco Jez****************************************************************************/#ifndef LWO2TYPES_#define LWO2TYPES_#include <string>namespace lwo2 {// basic typesstruct ID4 {	char id[4];};typedef signed char			I1;typedef signed short int	I2;typedef signed int			I4;typedef unsigned char		U1;typedef unsigned short int	U2;typedef unsigned int		U4;typedef float				F4;typedef std::string			S0;// composite typesstruct VX {	U4 index;};struct COL12 {	F4 red;	F4 green;	F4 blue;};struct VEC12 {	F4 X;	F4 Y;	F4 Z;};struct FP4 {	F4 fraction;};struct ANG4 {	F4 radians;};struct FNAM0 {	S0 name;};}#endif

⌨️ 快捷键说明

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