add functions

This commit is contained in:
张壹 2019-09-13 16:03:01 +08:00
parent fa8f9708e4
commit e07eb96b5a
3 changed files with 14 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public:
int AddInterfaceBlock(modelist); //添加密度界面
//模型操作
int ReadModel(char*,char*);
int ReadMeshtoolModel(char*);
int ReadMeshtoolModel(char*); //读入meshtool 3D格式文件
//输出模型
int RegisteredOuput(bool); //注册输出的块体模型
int OutMshFile(char*,string); //输出模型文件

View File

@ -0,0 +1,7 @@
#include "gm3d.h"
int GM3D::OutMeshtoolFile(char* filename)
{
//
return 0;
}

View File

@ -0,0 +1,6 @@
#include "gm3d.h"
int GM3D::ReadMeshtoolModel(char* filename)
{
return 0;
}