X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Placement.cpp;h=fb139dd8e78a1f86683936089901aaacae1a7d58;hb=4d6bb9de0e54f09a9bbacc94a058cb7cd437d535;hp=651e0360120efd4664a8debc614966d81d0683e5;hpb=3afc257344780d0447d4fca3f26c91d932d0a0b0;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Placement.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_Placement.cpp index 651e03601..fb139dd8e 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Placement.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Placement.cpp @@ -4,10 +4,13 @@ // Created: 2 Dec 2014 // Author: Artem ZHIDKOV -#include +#include "GeomAlgoAPI_Placement.h" + #include +#include #include +#include #include #include #include @@ -15,36 +18,30 @@ #include #include +#include #include #include -#include -#include -#include -#include -#include #include -#define DEB_PLACEMENT 1 -GeomAlgoAPI_Placement::GeomAlgoAPI_Placement( - std::shared_ptr theSourceSolid, - std::shared_ptr theDestSolid, - std::shared_ptr theSourceShape, - std::shared_ptr theDestShape, - bool theIsReverse, - bool theIsCentering) - : myDone(false), - myShape(new GeomAPI_Shape()) +GeomAlgoAPI_Placement::GeomAlgoAPI_Placement(const std::shared_ptr theSourceSolid, + const std::shared_ptr theDestSolid, + const std::shared_ptr theSourceShape, + const std::shared_ptr theDestShape, + const bool theIsReverse, + const bool theIsCentering, + const bool theSimpleTransform) { - build(theSourceSolid, theDestSolid, theSourceShape, theDestShape, theIsReverse, theIsCentering); + build(theSourceSolid, theDestSolid, theSourceShape, theDestShape, + theIsReverse, theIsCentering, theSimpleTransform); } -void GeomAlgoAPI_Placement::build( - const std::shared_ptr& theSourceSolid, - const std::shared_ptr& theDestSolid, - const std::shared_ptr& theSourceShape, - const std::shared_ptr& theDestShape, - bool theIsReverse, - bool theIsCentering) +void GeomAlgoAPI_Placement::build(const std::shared_ptr& theSourceSolid, + const std::shared_ptr& theDestSolid, + const std::shared_ptr& theSourceShape, + const std::shared_ptr& theDestShape, + const bool theIsReverse, + const bool theIsCentering, + const bool theSimpleTransform) { // Filling the parameters of the objects static const int aNbObjects = 2; @@ -188,73 +185,38 @@ void GeomAlgoAPI_Placement::build( gp_Vec aTrans = aDstLoc - aSrcLoc; aTrsf.SetTransformation(aRot, aTrans); - // Transform the shape with copying it - BRepBuilderAPI_Transform* aBuilder = new BRepBuilderAPI_Transform(aSourceShape, aTrsf, true); - if(aBuilder) { - setImpl(aBuilder); - myDone = aBuilder->IsDone() == Standard_True; - if (myDone) { - TopoDS_Shape aResult = aBuilder->Shape(); - // fill data map to keep correct orientation of sub-shapes - for (TopExp_Explorer Exp(aResult,TopAbs_FACE); Exp.More(); Exp.Next()) { - std::shared_ptr aCurrentShape(new GeomAPI_Shape()); - aCurrentShape->setImpl(new TopoDS_Shape(Exp.Current())); - myMap.bind(aCurrentShape, aCurrentShape); - } -#ifdef DEB_PLACEMENT - int aNum = myMap.size(); - cout << "MAP of Oriented shapes =" << aNum <setImpl(new TopoDS_Shape(aResult)); - myMkShape = new GeomAlgoAPI_MakeShape (aBuilder); + if (theSimpleTransform) { // just add transformation + TopLoc_Location aDelta(aTrsf); + // store the accumulated information about the result and this delta + //myTrsf = std::shared_ptr(new GeomAPI_Trsf(new gp_Trsf(aTrsf * aSourceShape.Location().Transformation()))); + myTrsf.reset(new GeomAPI_Trsf(new gp_Trsf(aTrsf))); + TopoDS_Shape aResult = aSourceShape.Moved(aDelta); + std::shared_ptr aShape(new GeomAPI_Shape()); + aShape->setImpl(new TopoDS_Shape(aResult)); + this->setShape(aShape); + this->setDone(true); // it is allways true for simple transformation generation + } else { // internal rebuild of the shape + // Transform the shape with copying it + BRepBuilderAPI_Transform* aBuilder = new BRepBuilderAPI_Transform(aSourceShape, aTrsf, true); + if(!aBuilder) { + return; } - } -} - -//============================================================================ -const bool GeomAlgoAPI_Placement::isValid() const -{ - BRepCheck_Analyzer aChecker(myShape->impl()); - return (aChecker.IsValid() == Standard_True); -} + this->setImpl(aBuilder); + this->setBuilderType(OCCT_BRepBuilderAPI_MakeShape); + if(aBuilder->IsDone() != Standard_True) { + return; + } + TopoDS_Shape aResult = aBuilder->Shape(); -//============================================================================ -const bool GeomAlgoAPI_Placement::hasVolume() const -{ - bool hasVolume(false); - if(isValid()) { - const TopoDS_Shape& aRShape = myShape->impl(); - GProp_GProps aGProp; - BRepGProp::VolumeProperties(aRShape, aGProp); - if(aGProp.Mass() > Precision::Confusion()) - hasVolume = true; + std::shared_ptr aShape(new GeomAPI_Shape()); + aShape->setImpl(new TopoDS_Shape(aResult)); + this->setShape(aShape); + this->setDone(true); } - return hasVolume; -} - -//============================================================================ -const std::shared_ptr& GeomAlgoAPI_Placement::shape () const -{ - return myShape; -} - -//============================================================================ -void GeomAlgoAPI_Placement::mapOfShapes (GeomAPI_DataMapOfShapeShape& theMap) const -{ - theMap = myMap; -} - -//============================================================================ -GeomAlgoAPI_MakeShape * GeomAlgoAPI_Placement::makeShape() const -{ - return myMkShape; } -//============================================================================ -GeomAlgoAPI_Placement::~GeomAlgoAPI_Placement() +//================================================================================================= +std::shared_ptr GeomAlgoAPI_Placement::transformation() const { - if (!empty()) - myMap.clear(); + return myTrsf; }