|
| Text ()=default |
|
| Text (const std::string &fontResourceName, int ptsize) |
|
| Text (const std::string &text, const std::string &fontResourceName, int ptsize) |
|
| Text (const std::string &text, const Font &font, int ptsize) |
|
IntRect | getLocalBounds () |
|
void | setFont (const Font &font) |
|
void | setFont (const std::string &resourceName) |
|
const std::string & | text () const |
|
void | setText (const std::string &text) |
|
void | setStyle (Style style) |
|
void | setColor (const Color &color) |
|
void | setCharacterSize (int size) |
|
void | setSize (const gk::Vector2i &size) |
|
void | setCentered (bool isCentered) |
|
void | setScaled (bool isScaled) |
|
void | setWrapped (bool isWrapped) |
|
virtual | ~IDrawable ()=default |
| Virtual destructor. More...
|
|
virtual | ~Transformable ()=default |
|
void | setPosition (float x, float y, float z=0) |
|
void | setPosition (const Vector3f &position) |
|
void | setOrigin (float x, float y, float z=0) |
|
void | setOrigin (const Vector3f &origin) |
|
void | setScale (float factorX, float factorY, float factorZ=1) |
|
void | setScale (const Vector3f &factors) |
|
void | setRotation (float angle) |
|
void | setRotation (float angle, const Vector3f &axis) |
|
const Vector3f & | getPosition () const |
|
const Vector3f & | getOrigin () const |
|
const Vector3f & | getScale () const |
|
float | getRotation () const |
|
void | move (float offsetX, float offsetY, float offsetZ=0) |
|
void | move (const Vector3f &offset) |
|
void | scale (float factorX, float factorY, float factorZ=1) |
|
void | scale (const Vector3f &factor) |
|
void | rotate (float angle) |
|
void | rotate (float angle, const Vector3f &axis) |
|
const Transform & | getTransform () const |
|
Definition at line 27 of file Text.hpp.