summaryrefslogtreecommitdiff
path: root/assetFactory/plane.cpp
blob: 37c81944ff0a683b3614b4c2fb3764048677cfc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "plane.h"
#include "modelFactoryMesh.h"

Plane::CreatedFaces
Plane::createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const
{
	static constexpr std::array<glm::vec3, 4> VERTICES {{
			{n, n, z},
			{y, n, z},
			{y, y, z},
			{n, y, z},
	}};

	return {{"plane", mesh.add_face(addMutatedToMesh(mesh, VERTICES, mutation))}};
}