//////////////////////// \brief Get size of the text object in pixels Get size of TextObject when rendered on screen \return Return Vector2i containing the size of the text object in pixels ////////////////////////
| 95 | /// \return Return Vector2i containing the size of the text object in pixels |
| 96 | ///////////////////////////// |
| 97 | inline vector2i_t Size(){ |
| 98 | if(textDirty){ |
| 99 | CalculateSizes(); |
| 100 | } |
| 101 | return textSize; |
| 102 | } |
| 103 | |
| 104 | ///////////////////////////// |
| 105 | /// \brief Get position of TextObject |
nothing calls this directly
no outgoing calls
no test coverage detected