Libs/Analyze/QMeshWarper.h
Namespaces
Name |
---|
shapeworks User usage reporting (telemetry) |
Classes
Name | |
---|---|
class | shapeworks::QMeshWarper Wraps MeshWarper as a QObject. |
Source code
#pragma once
#include <Mesh/MeshWarper.h>
#include <QObject>
#include <QMutex>
#include <QElapsedTimer>
namespace shapeworks {
class QMeshWarper : public QObject, public MeshWarper {
Q_OBJECT;
public:
QMeshWarper(QObject* parent = nullptr);
float get_progress();
protected:
void update_progress(float p) override;
Q_SIGNALS:
void progress();
private:
float current_progress_ = 0;
};
}
Updated on 2024-03-17 at 12:58:44 -0600