4#include "../mygl_export.h"
6#include "AbstractShape.hpp"
18 static unsigned int VAO;
19 static unsigned int VBO;
20 static unsigned int EBO;
21 static const std::array<float, 20> vertices;
22 static const std::array<unsigned int, 4> indices;
33 virtual std::vector<glm::vec2>
points()
const override;
55 MYGL_EXPORT
Rectangle(
int width,
int height,
int x,
int y);
65 MYGL_EXPORT
virtual void draw(
const glm::mat4& lookAt,
const glm::mat4& projection)
const override;
77 MYGL_EXPORT
Rectangle line(
int x1,
int y1,
int x2,
int y2);
Class inherited by all the shapes, it defines common operations on a shape.
Class for creating rectangles.
static void glInit()
Initializes the OpenGL buffer objects.
virtual MYGL_EXPORT void draw(const glm::mat4 &lookAt, const glm::mat4 &projection) const override
Draws a rectangle, this method is called by a window.
MYGL_EXPORT ~Rectangle() override
Default destructor.
MYGL_EXPORT Rectangle()
Default constructor for the Rectangle class, constructs a grey 10*10 square.
MYGL_EXPORT Rectangle(int width, int height)
Constructs a width * height rectangle.
MYGL_EXPORT Rectangle(int width, int height, int x, int y)
Constructs a width * heigth rectangle whose center's coordinate is (x,y)
virtual std::vector< glm::vec2 > points() const override
Gives a list of the rectangle's points.
Namespace containing every class, function and enum of the library.