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++

#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;
}
}