24 #include <flw/OpenGL.h> 26 #include <flw/cmn/Containers.h> 36 template <
class TVertex>
47 vec<TVertex> getVertices()
const {
51 GLuint getVerticesSize()
const {
52 return mVertices.size();
55 std::vector<GLuint> getIndices()
const {
59 GLuint getIndicesSize()
const {
60 return mIndices.size();
64 vec<TVertex> mVertices;
Base class for every shape. Specialized with Vertex data structure.
Definition: Shape.h:37