blob: 0994898a7c1f32e553acf56374cf925bcccb6e0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "shape.h"
#include "assetFactoryConfig.h"
#include "gfx/models/vertex.hpp"
#include "maths.h"
#include "shape.h"
std::vector<OpenMesh::VertexHandle>
Shape::addMutatedToMesh(
ModelFactoryMesh & mesh, const std::span<const glm::vec3> vertices, const Mutation::Matrix & mutation)
{
std::vector<OpenMesh::VertexHandle> vhs;
std::transform(vertices.begin(), vertices.end(), std::back_inserter(vhs), [&mesh, &mutation](const auto & v) {
const auto p = v % mutation;
return mesh.add_vertex({p.x, p.y, p.z});
});
return vhs;
}
|