X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Scale.cpp;h=4e854c22a5f491e742f68ad57121d9b4c916382b;hb=d32b7de5f466bcf611537140d7410c2b5c151c3c;hp=6791520eb1524156b409faddccf7d0d658e40052;hpb=87b6a30a3afb8fb32e7e43ade8d9c947d9eb1684;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Scale.cpp b/src/FeaturesPlugin/FeaturesPlugin_Scale.cpp index 6791520eb..4e854c22a 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Scale.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Scale.cpp @@ -28,7 +28,7 @@ #include #include -#include +#include //================================================================================================= FeaturesPlugin_Scale::FeaturesPlugin_Scale() @@ -251,9 +251,8 @@ void FeaturesPlugin_Scale::loadNamingDS(GeomAlgoAPI_Scale& theScaleAlgo, // Name the faces std::shared_ptr aSubShapes = theScaleAlgo.mapOfSubShapes(); - int aReflectedTag = 1; - std::string aReflectedName = "Scaled"; - theResultBody->loadAndOrientModifiedShapes(&theScaleAlgo, - theBaseShape, GeomAPI_Shape::FACE, - aReflectedTag, aReflectedName, *aSubShapes.get()); + std::string aScaledName = "Scaled"; + FeaturesPlugin_Tools::storeModifiedShapes(theScaleAlgo, theResultBody, + theBaseShape, 1, 2, 3, aScaledName, + *aSubShapes.get()); }