summaryrefslogtreecommitdiff
path: root/assetFactory/shape.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'assetFactory/shape.cpp')
-rw-r--r--assetFactory/shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/assetFactory/shape.cpp b/assetFactory/shape.cpp
index ec6594e..3261354 100644
--- a/assetFactory/shape.cpp
+++ b/assetFactory/shape.cpp
@@ -9,7 +9,7 @@ Shape::addToMesh(ModelFactoryMesh & mesh, const std::span<const glm::vec3> verti
{
std::vector<OpenMesh::VertexHandle> vhs;
std::transform(vertices.begin(), vertices.end(), std::back_inserter(vhs), [&mesh](const auto & p) {
- return mesh.add_vertex({p.x, p.y, p.z});
+ return mesh.add_vertex(p);
});
return vhs;
}