blob: 5a2b59ce237adca968ce1a9aac37698accd11cea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include "modelFactoryMesh_fwd.h"
#include "mutation.h"
#include "stdTypeDefs.hpp"
#include <OpenMesh/Core/Mesh/Handles.hh>
#include <map>
#include <span>
#include <string>
class Vertex;
class Shape : public StdTypeDefs<Shape> {
public:
using CreatedFaces = std::multimap<std::string, OpenMesh::FaceHandle>;
static constexpr float z {}, y {.5}, n {-y}, o {1};
virtual ~Shape() = default;
virtual CreatedFaces createMesh(ModelFactoryMesh &, const Mutation::Matrix & mutation) const = 0;
static std::vector<OpenMesh::VertexHandle> addMutatedToMesh(
ModelFactoryMesh & mesh, const std::span<const glm::vec3> vertices, const Mutation::Matrix & mutation);
};
|