You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FITK_Interface/FITKInterfaceModel/FITKParticalMesh.cpp

32 lines
792 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include "FITKParticalMesh.h"
namespace Interface
{
/**
* @brief 获取粒子网格的绝对模型类型
*
* 该函数用于返回粒子网格对象的绝对模型类型。在FITK框架中不同的模型类型通过枚举值来区分
* 这里返回的是AMTPartical表示该对象是一个粒子网格模型。
*
* @return FITKModelEnum::AbsModelType 返回粒子网格的绝对模型类型枚举值
*/
FITKModelEnum::AbsModelType FITKParticalMesh::getAbsModelType()
{
return FITKModelEnum::AMTPartical;
}
void FITKParticalMesh::update()
{
}
FITKModelEnum::FITKMeshDim FITKParticalMesh::getMeshDim()
{
//默认是三维模型
return FITKModelEnum::FITKMeshDim::FMDimD3;
}
}