The Text class represents a basic string that is drawn on the screen.
More...
#include <CTurtle.hpp>
|
| Text (std::string text, const BitmapFont &font, const Color &color, float scale=1.0f, TextAlign alignment=TEXT_ALIGN_LEFT) |
|
| Text (const Text ©)=default |
|
AbstractDrawableObject * | copy () const override |
| Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.
|
|
void | draw (const Transform &t, Image &imgRef) const override |
| This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.
|
|
virtual | ~AbstractDrawableObject ()=default |
| Empty– virtual– default de-constructor.
|
|
|
| AbstractDrawableObject ()=default |
| Empty default constructor.
|
|
The Text class represents a basic string that is drawn on the screen.
◆ copy()
Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.
Implements cturtle::AbstractDrawableObject.
◆ draw()
void cturtle::Text::draw |
( |
const Transform & | t, |
|
|
Image & | imgRef ) const |
|
inlineoverridevirtual |
This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.
- Parameters
-
t | The transform at which to draw the geometry. |
imgRef | The canvas on which to draw. |
c | The color with to draw the geometry. |
Implements cturtle::AbstractDrawableObject.
◆ text
const std::string cturtle::Text::text |
The documentation for this class was generated from the following file: