1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0024642: TKOpenGl, OpenGl_Text - rotation angle is ignored in case of 2D text

This commit is contained in:
osa 2014-02-19 14:27:15 +04:00 committed by apn
parent 6a240ff87d
commit 03e04ead37

View File

@ -456,7 +456,8 @@ void OpenGl_Text::setupMatrix (const Handle(OpenGl_PrinterContext)& thePrintCtx,
{
glLoadIdentity();
glTranslatef (myPoint.x() + theDVec.x(), myPoint.y() + theDVec.y(), 0.0f);
glRotatef (180.0f, 1.0f, 0.0f, 0.0f);
glScalef (1.0f, -1.0f, 1.0f);
glRotatef (theTextAspect.Angle(), 0.0, 0.0, 1.0);
}
else
{