MyGL
Loading...
Searching...
No Matches
Triangle.hpp
1#ifndef MYGL_TRIANGLE
2#define MYGL_TRIANGLE
3
4#include "../mygl_export.h"
5
6#include "AbstractShape.hpp"
7
8#include <array>
9#include <vector>
10
11namespace my
12{
16 class Triangle : public AbstractShape
17 {
18 private:
19 unsigned int m_vao;
20 unsigned int m_vbo;
21 std::array<float, 15> m_vertices;
22
28 std::vector<glm::vec2> points() const override;
29
30 public:
37 MYGL_EXPORT Triangle(float x1, float y1, float x2, float y2, float x3, float y3);
38
43 MYGL_EXPORT Triangle(glm::vec2 p1, glm::vec2 p2, glm::vec2 p3);
44
46 MYGL_EXPORT ~Triangle() override;
47
55 MYGL_EXPORT void setPosition(int x, int y, bool center = false) override;
56
63 MYGL_EXPORT void setPosition(const glm::vec2& pos, bool center = false) override;
64
70 MYGL_EXPORT void draw(const glm::mat4& lookAt, const glm::mat4& projection) const override;
71 };
72} // namespace my
73
74#endif // MYGL_TRIANGLE
Class inherited by all the shapes, it defines common operations on a shape.
Class for creating triangles.
Definition Triangle.hpp:17
MYGL_EXPORT void setPosition(int x, int y, bool center=false) override
Moves the triangle to (x,y)
MYGL_EXPORT void draw(const glm::mat4 &lookAt, const glm::mat4 &projection) const override
Draws the triangle, this method is called by a window.
MYGL_EXPORT Triangle(glm::vec2 p1, glm::vec2 p2, glm::vec2 p3)
Creates a triangle from 3 points.
MYGL_EXPORT void setPosition(const glm::vec2 &pos, bool center=false) override
Moves the triangle to a specified position.
MYGL_EXPORT Triangle(float x1, float y1, float x2, float y2, float x3, float y3)
Creates a triangle from its point's coordinates.
MYGL_EXPORT ~Triangle() override
Default destructor.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10