MyGL
Loading...
Searching...
No Matches
Polygon.hpp
1#ifndef MYGL_POLYGON
2#define MYGL_POLYGON
3
4#include "../mygl_export.h"
5
6#include "AbstractShape.hpp"
7
8#include <unordered_map>
9#include <vector>
10
11namespace my
12{
16 class Polygon : public AbstractShape
17 {
18 private:
19 struct GLinfo {
20 unsigned int vao;
21 unsigned int vbo;
22 unsigned int ebo;
23 std::vector<float> vertices;
24 std::vector<unsigned int> indices;
25 };
26
27 static std::unordered_map<unsigned int, const GLinfo> buffers;
28 unsigned int m_sides;
29 const GLinfo* p_buffer;
30
36 static void computeVertices(unsigned int sides, GLinfo& buffer);
37
42 static void glInit(unsigned int sides);
43
49 virtual std::vector<glm::vec2> points() const override;
50
51 public:
55 MYGL_EXPORT Polygon();
56
62 MYGL_EXPORT Polygon(unsigned int sides, int radius);
63
72 MYGL_EXPORT Polygon(unsigned int sides, int radius, int x, int y);
73
75 MYGL_EXPORT ~Polygon() override;
76
81 MYGL_EXPORT void setSides(unsigned int sides);
82
88 MYGL_EXPORT virtual void draw(const glm::mat4& lookAt, const glm::mat4& projection) const override;
89 };
90
91} // namespace my
92
93#endif // MYGL_POLYGON
Class inherited by all the shapes, it defines common operations on a shape.
Class for creating regular polygons of 3 or more sides.
Definition Polygon.hpp:17
MYGL_EXPORT ~Polygon() override
Default destructor.
MYGL_EXPORT void setSides(unsigned int sides)
Changes the number of sides of a polygon.
MYGL_EXPORT Polygon()
Creates a triangle of radius 10.
virtual MYGL_EXPORT void draw(const glm::mat4 &lookAt, const glm::mat4 &projection) const override
Draws a polygon, this method is called by a window.
MYGL_EXPORT Polygon(unsigned int sides, int radius, int x, int y)
Creates a n-sided regular polygon with the specified radius and places its center at (x,...
MYGL_EXPORT Polygon(unsigned int sides, int radius)
Creates a n-sided regular polygon with the specified radius.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10