From 16420da1d40435222873fcf6385ae9d8dbd4f06c Mon Sep 17 00:00:00 2001 From: isk Date: Fri, 11 Dec 2015 19:29:09 +0300 Subject: [PATCH] 0026984: Draw Harness, ViewerTest - preserve local transformation of presentation within vtexture command --- src/ViewerTest/ViewerTest.cxx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 316fd1441c..7fc38d352b 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -3220,8 +3220,15 @@ Standard_Integer VTexture (Draw_Interpretor& theDi, Standard_Integer theArgsNb, } else { - anAISContext->Remove (anIO, Standard_False); aTexturedIO = new AIS_TexturedShape (DBRep::Get (theArgv[1])); + + if (anIO->HasTransformation()) + { + const gp_Trsf& aLocalTrsf = anIO->LocalTransformation(); + aTexturedIO->SetLocalTransformation (aLocalTrsf); + } + + anAISContext->Remove (anIO, Standard_False); GetMapOfAIS().UnBind1 (anIO); GetMapOfAIS().UnBind2 (aShapeName); GetMapOfAIS().Bind (aTexturedIO, aShapeName);