geometry.cpp
Go to the documentation of this file.
1 #include "geometry.hpp"
2 
3 const std::array<float, 20> quori_face::GEOMETRY_VERTICES {
4  1.0f, -1.0f, 0.0f, 1.0f, 1.0f, // top right
5  1.0f, 1.0f, 0.0f, 1.0f, 0.0f, // bottom right
6  -1.0f, 1.0f, 0.0f, 0.0f, 0.0f, // bottom left
7  -1.0f, -1.0f, 0.0f, 0.0f, 1.0f // top left
8 };
9 
10 const std::array<std::uint32_t, 6> quori_face::GEOMETRY_INDICES {
11  0, 1, 3,
12  1, 2, 3
13 };
quori_face::GEOMETRY_VERTICES
const std::array< float, 20 > GEOMETRY_VERTICES
Definition: geometry.cpp:3
geometry.hpp
quori_face::GEOMETRY_INDICES
const std::array< std::uint32_t, 6 > GEOMETRY_INDICES
Definition: geometry.cpp:10


quori_face
Author(s):
autogenerated on Wed Mar 2 2022 00:53:20