summaryrefslogtreecommitdiff
path: root/assetFactory/plane.cpp
blob: 6ae2c6201a59a80776a23f8c4d6b284eab819e77 (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, Scale3D) const
{
	static constexpr std::array<RelativePosition3D, 4> VERTICES {{
			{n, n, z},
			{y, n, z},
			{y, y, z},
			{n, y, z},
	}};

	return {mesh.add_namedFace("plane", addToMesh(mesh, VERTICES))};
}