📄 htest6model.h
字号:
// Htest6Model.h : interface of the Htest6Model.cpp class, derived from HBaseModel
// Adds application-specific data and members for each model
#ifndef _Htest6Model_H
#define _Htest6Model_H
#include "HDB.h"
#include "HBaseModel.h"
#include "HTools.h"
#include "ha_bridge.h"
class Htest6Model : public HBaseModel
{
public:
Htest6Model();
~Htest6Model();
// Overrides
HFileInputResult Read(const char * FileName);
bool Write(const char * FileName, HBaseView * pHView, int version, int width = 0, int height = 0);
void DeleteAllEntities();
bool IsSolidModel(){ return m_bSolidModel; };
void DeleteAcisEntity( ENTITY* entity);
ENTITY_LIST& GetEntityList() { return m_entityList; }
protected:
// list of entities (bodies) in this model
ENTITY_LIST m_entityList;
// do we have any solid modeler entities
bool m_bSolidModel;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -