|
MYGL_EXPORT | Text () |
| Default constructor, creates an empty string.
|
|
MYGL_EXPORT | Text (const std::string &text, my::Font &font, unsigned int size=30u) |
| Creates a text object.
|
|
MYGL_EXPORT | ~Text () override |
| Default destructor.
|
|
MYGL_EXPORT void | setContent (const std::string &text) |
| Sets the displayed text's content.
|
|
MYGL_EXPORT const std::string & | getContent () const |
| Returns the text that is currently displayed.
|
|
MYGL_EXPORT void | setFont (my::Font &font) |
| Changes the font.
|
|
MYGL_EXPORT void | setFontSize (unsigned int size) |
| Changes the character size.
|
|
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)
|
|
MYGL_EXPORT | ~Rectangle () override |
| Default destructor.
|
|
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 | 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 | setPosition (int x, int y, bool center=false) |
| Moves the shape to (x,y)
|
|
virtual MYGL_EXPORT void | setPosition (const glm::vec2 &pos, bool center=false) |
| Moves the shape to a specified position.
|
|
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.
|
|
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.
|
|
Class for drawing strings of text.
Definition at line 45 of file Text.hpp.