blob: 097a7793de47503e8de99abcda66e884ca48add3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef PKE_STATIC_PLANE_HPP
#define PKE_STATIC_PLANE_HPP
#include <glm/ext/vector_float3.hpp>
#include <glm/ext/vector_float2.hpp>
struct IntrinsicShapePlane {
glm::vec2 vert[4];
glm::vec2 uv[4];
uint16_t index[6];
};
extern IntrinsicShapePlane pkeIntrinsicsPlane;
#endif /* PKE_STATIC_PLANE_HPP */
|