X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Rotation.cpp;h=3d3076ab5d085516c6cce484a267717f3b2c636f;hb=fb54db5e1466b16dfc029c4a7364a67a9a6a8c24;hp=aea860dcb5c98830f5b7fed93f74c355d2c348c3;hpb=b6be33d3af5a10e204e3bd69708d49b8b9f1a127;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp b/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp index aea860dcb..3d3076ab5 100755 --- a/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp @@ -8,9 +8,7 @@ #include #include -#include #include -#include #include #include @@ -78,44 +76,37 @@ void FeaturesPlugin_Rotation::execute() anObjectsIt++, aContext++) { std::shared_ptr aBaseShape = *anObjectsIt; bool isPart = (*aContext)->groupName() == ModelAPI_ResultPart::group(); - GeomAlgoAPI_Rotation aRotationAlgo(aBaseShape, anAxis, anAngle, isPart); - - // Checking that the algorithm worked properly. - if(!aRotationAlgo.isDone()) { - static const std::string aFeatureError = "Rotation algorithm failed"; - setError(aFeatureError); - break; - } - if(aRotationAlgo.shape()->isNull()) { - static const std::string aShapeError = "Resulting shape is Null"; - setError(aShapeError); - break; - } - if(!aRotationAlgo.isValid()) { - std::string aFeatureError = "Warning: resulting shape is not valid"; - setError(aFeatureError); - break; - } // Setting result. if (isPart) { + std::shared_ptr aTrsf(new GeomAPI_Trsf()); + aTrsf->setRotation(anAxis, anAngle); ResultPartPtr anOrigin = std::dynamic_pointer_cast(*aContext); - - ResultPartPtr aCurrentResult; - const std::list >& aResults = results(); - std::list >::const_iterator aResIter = aResults.begin(); - for(int a = 0; aResIter != aResults.end(); aResIter++, a++) { - if (a == aResultIndex) { - aCurrentResult = std::dynamic_pointer_cast(*aResIter); - break; - } - } - ResultPartPtr aResultPart = document()->copyPart(aCurrentResult, anOrigin, aResultIndex); - aResultPart->setTrsf(*aContext, aRotationAlgo.transformation()); + ResultPartPtr aResultPart = document()->copyPart(anOrigin, data(), aResultIndex); + aResultPart->setTrsf(*aContext, aTrsf); setResult(aResultPart); } else { + GeomAlgoAPI_Rotation aRotationAlgo(aBaseShape, anAxis, anAngle); + + // Checking that the algorithm worked properly. + if(!aRotationAlgo.isDone()) { + static const std::string aFeatureError = "Error: Rotation algorithm failed."; + setError(aFeatureError); + break; + } + if(aRotationAlgo.shape()->isNull()) { + static const std::string aShapeError = "Error: Resulting shape is Null."; + setError(aShapeError); + break; + } + if(!aRotationAlgo.isValid()) { + std::string aFeatureError = "Error: Resulting shape is not valid."; + setError(aFeatureError); + break; + } + ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex); - LoadNamingDS(aRotationAlgo, aResultBody, aBaseShape); + loadNamingDS(aRotationAlgo, aResultBody, aBaseShape); setResult(aResultBody, aResultIndex); } aResultIndex++; @@ -125,20 +116,19 @@ void FeaturesPlugin_Rotation::execute() removeResults(aResultIndex); } -void FeaturesPlugin_Rotation::LoadNamingDS(const GeomAlgoAPI_Rotation& theRotaionAlgo, +void FeaturesPlugin_Rotation::loadNamingDS(GeomAlgoAPI_Rotation& theRotaionAlgo, std::shared_ptr theResultBody, std::shared_ptr theBaseShape) { - ModelAPI_BodyBuilder* aResultBuilder = theResultBody->getBodyBuilder(); // Store result. - aResultBuilder->storeModified(theBaseShape, theRotaionAlgo.shape()); + theResultBody->storeModified(theBaseShape, theRotaionAlgo.shape()); - std::shared_ptr aSubShapes = theRotaionAlgo.mapOfShapes(); + std::shared_ptr aSubShapes = theRotaionAlgo.mapOfSubShapes(); int aRotatedTag = 1; std::string aRotatedName = "Rotated"; - aResultBuilder->loadAndOrientModifiedShapes(theRotaionAlgo.makeShape().get(), - theBaseShape, GeomAPI_Shape::FACE, - aRotatedTag, aRotatedName, *aSubShapes.get()); + theResultBody->loadAndOrientModifiedShapes(&theRotaionAlgo, + theBaseShape, GeomAPI_Shape::FACE, + aRotatedTag, aRotatedName, *aSubShapes.get()); }