From 90dda39995ebbd4c4de8184fd89f528fafc45474 Mon Sep 17 00:00:00 2001 From: dmv Date: Wed, 13 Oct 2010 15:01:03 +0000 Subject: [PATCH] 0021031: EDF 1646 GEOM: Modify Location leads to Position driver failed --- src/GEOMImpl/GEOMImpl_ITransformOperations.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/GEOMImpl/GEOMImpl_ITransformOperations.cxx b/src/GEOMImpl/GEOMImpl_ITransformOperations.cxx index 259e42e35..42ab3f44f 100644 --- a/src/GEOMImpl/GEOMImpl_ITransformOperations.cxx +++ b/src/GEOMImpl/GEOMImpl_ITransformOperations.cxx @@ -1236,9 +1236,6 @@ Handle(GEOM_Object) GEOMImpl_ITransformOperations::PositionShape Handle(GEOM_Function) anOriginal = theObject->GetLastFunction(); if (anOriginal.IsNull()) return NULL; //There is no function which creates an object to be set in position - Handle(GEOM_Function) aSrcF; - if (!theStartLCS.IsNull()) aSrcF = theStartLCS->GetLastFunction(); - //Add a Position function Standard_Integer aType = POSITION_SHAPE; if (theStartLCS.IsNull()) aType = POSITION_SHAPE_FROM_GLOBAL; @@ -1255,7 +1252,7 @@ Handle(GEOM_Object) GEOMImpl_ITransformOperations::PositionShape aTI.SetShape(anOriginal); aTI.SetEndLCS(theEndLCS->GetLastFunction()); if (!theStartLCS.IsNull()) - aTI.SetStartLCS(aSrcF); + aTI.SetStartLCS(theObject == theStartLCS ? anOriginal : theStartLCS->GetLastFunction()); //Compute the Position try { -- 2.39.2