src/vertexmap.h

Tue, 07 Jun 2022 20:44:19 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 07 Jun 2022 20:44:19 +0300
changeset 202
b05af0bab735
parent 200
ca23936b455b
child 206
654661eab7f3
permissions
-rw-r--r--

Replaced the tab widget with an MDI area

#ifndef VERTEXMAP_H
#define VERTEXMAP_H
#include <set>
#include "main.h"
#include "model.h"

/**
 * @brief Collects a map of all vertices in a model to all objects that use the specified vertex.
 */
class VertexMap : public QObject
{
	Q_OBJECT
public:
	struct VertexInfo
	{
		glm::vec3 point;
		std::set<ModelId> objects;
		bool transformSet = false;
		glm::mat4 transform;
	};
	using ApplyFunction = std::function<void(const glm::vec3&, const VertexInfo&)>;
	VertexMap(const Model *model);
	Q_SLOT void build();
	void apply(ApplyFunction fn) const;
Q_SIGNALS:
	Q_SIGNAL void verticesChanged();
private:
	const Model* const model;
	QSet<unsigned int> vertexHashes;
	std::vector<glm::vec3> vertices;
	std::map<unsigned int, VertexInfo> map;
};

#endif // VERTEXMAP_H

mercurial