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:
parent
6a240ff87d
commit
03e04ead37
@ -456,7 +456,8 @@ void OpenGl_Text::setupMatrix (const Handle(OpenGl_PrinterContext)& thePrintCtx,
|
|||||||
{
|
{
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
glTranslatef (myPoint.x() + theDVec.x(), myPoint.y() + theDVec.y(), 0.0f);
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user