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.
27 lines
492 B
C++
27 lines
492 B
C++
#ifndef _WidgetOCCEvent_H
|
|
#define _WidgetOCCEvent_H
|
|
|
|
#include "GUIWidgetAPI.h"
|
|
#include <QObject>
|
|
|
|
namespace GraphData {
|
|
class PickedData;
|
|
}
|
|
|
|
namespace GUI
|
|
{
|
|
class GUIWIDGETAPI WidgetOCCEvent : public QObject
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
WidgetOCCEvent();
|
|
~WidgetOCCEvent();
|
|
|
|
static bool getPoint(GraphData::PickedData* data, double* point);
|
|
|
|
static QList<int> getFaces(QList<GraphData::PickedData*> data, bool isOk = true);
|
|
};
|
|
}
|
|
|
|
#endif
|