Files
OpenBK7231T_App/src/sim/Text.cpp
openshwprojects 88a83644f2 sim: info tool
2022-11-26 12:45:46 +01:00

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