#ifndef BOXGLRENDERER_H #define BOXGLRENDERER_H #include #include #include /** * @brief Box renderer */ class BoxGLRenderer { public: BoxGLRenderer(); /** * @brief Init this renderer to draw a box */ void init(); /** * @brief Render a box */ void render(); /** * @brief Returns the array that contains values */ const std::vector& getValues() const; /** * @brief Returns the array that contains indices */ const std::vector& getIndices() const; private: std::vector m_values; std::vector m_indices; }; #endif // BOXGLRENDERER_H