MyGL
Loading...
Searching...
No Matches
Triangle Class Reference

Class for creating triangles. More...

#include <Triangle.hpp>

Inheritance diagram for Triangle:
AbstractShape

Public Member Functions

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 (glm::vec2 p1, glm::vec2 p2, glm::vec2 p3)
 Creates a triangle from 3 points.
 
MYGL_EXPORT ~Triangle () override
 Default destructor.
 
MYGL_EXPORT void setPosition (int x, int y, bool center=false) override
 Moves the triangle to (x,y)
 
MYGL_EXPORT void setPosition (const glm::vec2 &pos, bool center=false) override
 Moves the triangle to a specified position.
 
MYGL_EXPORT void draw (const glm::mat4 &lookAt, const glm::mat4 &projection) const override
 Draws the triangle, this method is called by a window.
 
- Public Member Functions inherited from AbstractShape
MYGL_EXPORT AbstractShape ()
 Default constructor, Initializes a 10 * 10 grey object.
 
MYGL_EXPORT AbstractShape (int width, int height)
 Intializes a grey object which dimensions are width * height.
 
MYGL_EXPORT AbstractShape (int width, int height, int x, int y)
 Initializes a width * height object whose center is at (x, y);.
 
virtual MYGL_EXPORT ~AbstractShape ()
 Default destructor.
 
MYGL_EXPORT glm::vec2 getSize () const noexcept
 Returns the size of the shape.
 
virtual MYGL_EXPORT void setRelativePosition (int x, int y, const my::Camera &camera, bool center=false)
 Moves the shape to a certain position, relative to a camera's position.
 
virtual MYGL_EXPORT void setRelativePosition (const glm::vec2 &pos, const my::Camera &camera, bool center=false)
 Moves the shape to a certain position, relative to a camera's position.
 
virtual MYGL_EXPORT void move (float x, float y) noexcept
 Moves the shape relative to it's current position.
 
MYGL_EXPORT glm::vec2 getPosition () const noexcept
 Gives the current position of the shape's center.
 
MYGL_EXPORT void setScale (float x, float y) noexcept
 Sets the scale factor applied to the shape.
 
MYGL_EXPORT void scale (float x, float y) noexcept
 Modifies the scaling factor.
 
MYGL_EXPORT glm::vec2 getScale () const noexcept
 Gives the current scaling factor applied to the shape.
 
MYGL_EXPORT void setRotation (float angle)
 Sets the rotation applied to the shape.
 
MYGL_EXPORT void rotate (float angle)
 Rotates the shape.
 
MYGL_EXPORT float getRotation () const noexcept
 Returns the shapes's angle of rotation.
 
virtual MYGL_EXPORT void setColor (uint8_t r, uint8_t g, uint8_t b, uint8_t alpha=255) noexcept
 Sets the shape's color from its individual components (ints between 0 and 255)
 
virtual MYGL_EXPORT void setColor (const my::Color &color) noexcept
 Sets the shape's color from an existing color.
 
MYGL_EXPORT my::Color getColor () const noexcept
 Returns the shape's color.
 
MYGL_EXPORT void setOutlineThickness (unsigned int thickness)
 Sets the shape's outline's thickness.
 
MYGL_EXPORT void setOutlineColor (const my::Color &color) noexcept
 Sets the shape's outline color.
 
MYGL_EXPORT void setOutlineColor (uint8_t r, uint8_t g, uint8_t b, uint8_t alpha=255) noexcept
 Sets the shape's outline color from its individual components (ints between 0 and 255)
 
MYGL_EXPORT bool SATCollides (const AbstractShape &shape) const
 Tells wether 2 shapes are overlapping using the separating axis theorem (SAT)
 
MYGL_EXPORT bool BBoxCollides (const AbstractShape &shape) const noexcept
 Tells whether 2 shapes are overlapping using their bounding boxes.
 
virtual MYGL_EXPORT void setTexture (const my::Texture &texture)
 Attaches a texture to the shape.
 
MYGL_EXPORT void setTexture (const std::string &filename)
 Attaches a texture to the shape.
 
MYGL_EXPORT void setShader (const ShaderProgram &program)
 Sets the shader used to draw the shape.
 
MYGL_EXPORT void setOutlineShader (const ShaderProgram &program)
 Sets the shader used to draw the shape's outline.
 

Additional Inherited Members

- Static Public Attributes inherited from AbstractShape
static const ShaderProgramdefaultShader
 
- Protected Attributes inherited from AbstractShape
glm::vec2 m_position
 
glm::vec2 m_originalScale
 
glm::vec2 m_scaleFactor
 
float m_rotationAngle
 
bool m_updateMatrix
 
glm::mat4 m_model
 
my::Color m_color
 
float m_outlineThickness
 
my::Color m_outlineColor
 
glm::mat4 m_outlineModel
 
my::Texture m_texture
 
bool m_isTextured
 
my::ShaderProgram m_shader
 
my::ShaderProgram m_outlineShader
 
- Static Protected Attributes inherited from AbstractShape
static constexpr float pi = std::numbers::pi_v<float>
 
static my::ShaderProgram shader
 
static my::ShaderProgram texShader
 

Detailed Description

Class for creating triangles.

Definition at line 16 of file Triangle.hpp.

Constructor & Destructor Documentation

◆ Triangle() [1/2]

MYGL_EXPORT Triangle ( float x1,
float y1,
float x2,
float y2,
float x3,
float y3 )

Creates a triangle from its point's coordinates.

Parameters
x1,y1The first point's coordinates
x2,y2The second point's coordinates
x3,y3The third point's coordinates

◆ Triangle() [2/2]

MYGL_EXPORT Triangle ( glm::vec2 p1,
glm::vec2 p2,
glm::vec2 p3 )

Creates a triangle from 3 points.

Parameters
p1,p2,p3The triangle's points

Member Function Documentation

◆ draw()

MYGL_EXPORT void draw ( const glm::mat4 & lookAt,
const glm::mat4 & projection ) const
overridevirtual

Draws the triangle, this method is called by a window.

Parameters
lookAtThe view matrix (usually provided by the window)
projectionThe projection matrix (also provided by the window)

Implements AbstractShape.

◆ setPosition() [1/2]

MYGL_EXPORT void setPosition ( const glm::vec2 & pos,
bool center = false )
overridevirtual

Moves the triangle to a specified position.

Parameters
posA glm::vec2 containing the new position
centerIf true, set the triangle's centroid at 'pos', else sets its bottom left hand corner. Default value is false

Reimplemented from AbstractShape.

◆ setPosition() [2/2]

MYGL_EXPORT void setPosition ( int x,
int y,
bool center = false )
overridevirtual

Moves the triangle to (x,y)

Parameters
xThe new horizontal position
yThe new vertical popsition
centerIf true, set the triangle's centroid at (x,y), else sets its bottom left hand corner at (x,y). Default value is false

Reimplemented from AbstractShape.


The documentation for this class was generated from the following file: