break everything

This commit is contained in:
2021-10-02 20:47:02 +02:00
parent 63074306c2
commit d74f80530b
16 changed files with 338 additions and 169 deletions

28
src/mesh_processor.h Normal file
View File

@ -0,0 +1,28 @@
#ifndef MESH_PROCESSING_H
#define MESH_PROCESSING_H
#include "my_mesh.h"
#include "mesh_processor_painter.h"
#include <vector>
#include <QObject>
class MeshProcessor : public QObject {
Q_OBJECT
std::vector<HalfedgeHandle> holes;
// friend class MeshProcessorPainter;
public:
MyMesh mesh;
MeshProcessor(const QString &path);
public slots:
void highlightHoles();
void fillHoles();
};
#endif