summaryrefslogtreecommitdiff
path: root/assetFactory/plane.cpp
blob: 563c4e96fcff086486b7fd754f9a6ae7812717bc (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 {mesh.add_namedFace("plane", addMutatedToMesh(mesh, VERTICES, mutation))};
}