vrtreeval.h

来自「finite element mesh 参数化有限元网格划分」· C头文件 代码 · 共 27 行

H
27
字号
#ifndef _VRTREEVAL_H_
#define _VRTREEVAL_H_
#include "GeomShape.h"

#define NAME_LEN 256

typedef union{
	char id[NAME_LEN];
	int int32;
	float float_val;
	VRSFTime time_val;
	float vec2f[2];
	float vec3f[3];
	float vec4f[4];
	VRSFBool sf_bool;
	VRNode* sf_node;
	VRMFInt32* mf_int32;
	VRMFFloat* mf_float;
	VRMFVec2f* mf_vec2f;
	VRMFVec3f* mf_vec3f;
	VRMFRotation* mf_rotation;
	VRMFString* mf_string;
	VRMFColor* mf_color;
	VRMFNode* mf_node;
} WRLSTYPE;

#endif

⌨️ 快捷键说明

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