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.
97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
#ifndef FITKOCCSPLITTER_H
|
|
#define FITKOCCSPLITTER_H
|
|
|
|
#include "FITKAbstractOCCModel.h"
|
|
#include "FITK_Interface/FITKInterfaceGeometry/FITKAbsGeoSplitter.h"
|
|
|
|
namespace OCC {
|
|
/**
|
|
* @brief 曲线分割抽象类.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCCurveSplitter :
|
|
public Interface::FITKAbsGeoCurveSplitter, public OCCShapeAgent
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
FITKOCCCurveSplitter();
|
|
/**
|
|
* @brief 析构函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
~FITKOCCCurveSplitter() override = default;
|
|
/**
|
|
* @brief 更新模型.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
virtual bool update() override;
|
|
};
|
|
|
|
/**
|
|
* @brief 面分割抽象类.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCSurfaceSplitter :
|
|
public Interface::FITKAbsGeoSurfaceSplitter, public OCCShapeAgent
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
FITKOCCSurfaceSplitter();
|
|
/**
|
|
* @brief 析构函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
~FITKOCCSurfaceSplitter() override = default;
|
|
/**
|
|
* @brief 更新模型.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
virtual bool update() override;
|
|
};
|
|
|
|
/**
|
|
* @brief 体分割抽象类.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCSolidSplitter :
|
|
public Interface::FITKAbsGeoSolidSplitter, public OCCShapeAgent
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
FITKOCCSolidSplitter();
|
|
/**
|
|
* @brief 析构函数.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
~FITKOCCSolidSplitter() override = default;
|
|
/**
|
|
* @brief 更新模型.
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-08-27
|
|
*/
|
|
virtual bool update() override;
|
|
};
|
|
|
|
}
|
|
#endif // FITKOCCSPLITTER_H
|