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.
89 lines
2.5 KiB
C++
89 lines
2.5 KiB
C++
/**********************************************************************
|
|
* @file PostGraphWidgetSphere.h
|
|
* @brief VTK球界面
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*********************************************************************/
|
|
#ifndef _PostGraphWidgetSphere_H_
|
|
#define _PostGraphWidgetSphere_H_
|
|
|
|
#include <QObject>
|
|
#include "PostGraphAdaptorAPI.h"
|
|
|
|
class vtkSphereWidget;
|
|
|
|
namespace Interface
|
|
{
|
|
class PostGraphWidgetSphereCallBack;
|
|
/**
|
|
* @brief VTK球界面
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*/
|
|
class PostGraphAdaptorAPI PostGraphWidgetSphere : public QObject
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
/**
|
|
* @brief 构造函数
|
|
* @param[i] widget 父界面
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*/
|
|
PostGraphWidgetSphere(QWidget* widget);
|
|
/**
|
|
* @brief 析构函数
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*/
|
|
~PostGraphWidgetSphere();
|
|
/**
|
|
* @brief 设置是否显示
|
|
* @param[i] isShow 是否显示
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-18
|
|
*/
|
|
void setIsShow(bool isShow);
|
|
/**
|
|
* @brief 设置数据
|
|
* @param[i] center 中心[3]
|
|
* @param[i] radius 半径
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*/
|
|
void setValue(double* center, double radius);
|
|
/**
|
|
* @brief 获取数据
|
|
* @param[o] center 中心[3]
|
|
* @param[o] radius 半径
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-10-09
|
|
*/
|
|
void getValue(double* center, double& radius);
|
|
signals:
|
|
;
|
|
/**
|
|
* @brief 数据更改
|
|
* @param[i] origin 中心点
|
|
* @param[i] normal 半径
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-18
|
|
*/
|
|
void sigValueChange(double* center, double radius);
|
|
private:
|
|
/**
|
|
* @brief 裁切界面
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-18
|
|
*/
|
|
vtkSphereWidget* _widget = nullptr;
|
|
/**
|
|
* @brief 回调
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-18
|
|
*/
|
|
PostGraphWidgetSphereCallBack* _callBack = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif |