mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-14 19:28:57 +01:00
24 lines
351 B
C++
24 lines
351 B
C++
#ifdef WINDOWS
|
|
#include "Text.h"
|
|
|
|
void CText::drawShape() {
|
|
drawText(getX(), getY(), txt.c_str());
|
|
}
|
|
|
|
|
|
|
|
float CText::drawPrivateInformation2D(float x, float h) {
|
|
h = drawText(x, h, "Text: %s", this->txt.c_str());
|
|
return h;
|
|
}
|
|
|
|
|
|
void CText::rotateDegreesAround_internal(float f, const Coord &p) {
|
|
//pos = pos.rotateDegreesAround(f, p);
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|