4#include "../mygl_export.h"
6#include "AbstractShape.hpp"
21 std::array<float, 15> m_vertices;
28 std::vector<glm::vec2> points()
const override;
37 MYGL_EXPORT
Triangle(
float x1,
float y1,
float x2,
float y2,
float x3,
float y3);
43 MYGL_EXPORT
Triangle(glm::vec2 p1, glm::vec2 p2, glm::vec2 p3);
55 MYGL_EXPORT
void setPosition(
int x,
int y,
bool center =
false)
override;
63 MYGL_EXPORT
void setPosition(
const glm::vec2& pos,
bool center =
false)
override;
70 MYGL_EXPORT
void draw(
const glm::mat4& lookAt,
const glm::mat4& projection)
const override;
Class inherited by all the shapes, it defines common operations on a shape.
Class for creating triangles.
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.