#include <FeaturesPlugin_Tools.h>
#include <GeomAlgoAPI_CompoundBuilder.h>
-#include <GeomAlgoAPI_MakeShapeList.h>
+#include <GeomAlgoAPI_MakeShapeSet.h>
#include <GeomAlgoAPI_ShapeTools.h>
#include <GeomAlgoAPI_Tools.h>
#include <GeomAlgoAPI_Translation.h>
}
// Collect transformations for each object in a part.
- std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList);
+ std::shared_ptr<GeomAlgoAPI_MakeShapeSet> aMakeShapeList(new GeomAlgoAPI_MakeShapeSet);
for (GeomAPI_ShapeHierarchy::iterator anObjectsIt = anObjects.begin();
anObjectsIt != anObjects.end(); anObjectsIt++) {
std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
#include <FeaturesPlugin_Tools.h>
#include <GeomAlgoAPI_CompoundBuilder.h>
-#include <GeomAlgoAPI_MakeShapeList.h>
+#include <GeomAlgoAPI_MakeShapeSet.h>
#include <GeomAlgoAPI_Tools.h>
#include <GeomAlgoAPI_Translation.h>
}
// Collect transformations for each object in a part.
- std::shared_ptr<GeomAlgoAPI_MakeShapeList> aMakeShapeList(new GeomAlgoAPI_MakeShapeList);
+ std::shared_ptr<GeomAlgoAPI_MakeShapeSet> aMakeShapeList(new GeomAlgoAPI_MakeShapeSet);
for (GeomAPI_ShapeHierarchy::iterator anObjectsIt = anObjects.begin();
anObjectsIt != anObjects.end(); anObjectsIt++) {
std::shared_ptr<GeomAPI_Shape> aBaseShape = *anObjectsIt;
GeomAlgoAPI_MakeShape.h
GeomAlgoAPI_MakeShapeCustom.h
GeomAlgoAPI_MakeShapeList.h
+ GeomAlgoAPI_MakeShapeSet.h
GeomAlgoAPI_MakeSweep.h
GeomAlgoAPI_MakeVolume.h
GeomAlgoAPI_DFLoader.h
GeomAlgoAPI_MakeShape.cpp
GeomAlgoAPI_MakeShapeCustom.cpp
GeomAlgoAPI_MakeShapeList.cpp
+ GeomAlgoAPI_MakeShapeSet.cpp
GeomAlgoAPI_MakeSweep.cpp
GeomAlgoAPI_MakeVolume.cpp
GeomAlgoAPI_DFLoader.cpp
--- /dev/null
+// Copyright (C) 2014-2022 CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "GeomAlgoAPI_MakeShapeSet.h"
+
+
+#include <NCollection_List.hxx>
+#include <NCollection_Map.hxx>
+#include <TopoDS_Shape.hxx>
+
+//==================================================================================================
+GeomAlgoAPI_MakeShapeSet::GeomAlgoAPI_MakeShapeSet()
+: GeomAlgoAPI_MakeShapeList()
+{}
+
+//==================================================================================================
+GeomAlgoAPI_MakeShapeSet::GeomAlgoAPI_MakeShapeSet(const ListOfMakeShape& theMakeShapeSet)
+: GeomAlgoAPI_MakeShapeList(theMakeShapeSet)
+{
+}
+
+//==================================================================================================
+void GeomAlgoAPI_MakeShapeSet::generated(const GeomShapePtr theOldShape,
+ ListOfShape& theNewShapes)
+{
+ if (myListOfMakeShape.empty()) {
+ return;
+ }
+
+ for (ListOfMakeShape::iterator aBuilderIt = myListOfMakeShape.begin();
+ aBuilderIt != myListOfMakeShape.end();
+ ++aBuilderIt)
+ {
+ GeomMakeShapePtr aMakeShape = *aBuilderIt;
+ aMakeShape->generated(theOldShape, theNewShapes);
+ }
+}
+
+//==================================================================================================
+void GeomAlgoAPI_MakeShapeSet::modified(const GeomShapePtr theOldShape,
+ ListOfShape& theNewShapes)
+{
+ if (myListOfMakeShape.empty()) {
+ return;
+ }
+
+ for (ListOfMakeShape::iterator aBuilderIt = myListOfMakeShape.begin();
+ aBuilderIt != myListOfMakeShape.end();
+ ++aBuilderIt)
+ {
+ GeomMakeShapePtr aMakeShape = *aBuilderIt;
+ ListOfShape aModifiedShapes;
+ aMakeShape->modified(theOldShape, theNewShapes);
+ }
+}
--- /dev/null
+// Copyright (C) 2014-2022 CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef GeomAlgoAPI_MakeShapeSet_H_
+#define GeomAlgoAPI_MakeShapeSet_H_
+
+#include <GeomAPI_Shape.h>
+#include <GeomAlgoAPI.h>
+#include <GeomAlgoAPI_MakeShapeList.h>
+
+#include <memory>
+
+/// \class GeomAlgoAPI_MakeShapeSet
+/// \ingroup DataAlgo
+/// \brief Set of independent topological shapes constructions
+class GeomAlgoAPI_MakeShapeSet : public GeomAlgoAPI_MakeShapeList
+{
+public:
+ /// Default constructor
+ GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeSet();
+
+ /// \brief Constructor
+ /// \param[in] theMakeShapeSet list of algorithms.
+ GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeSet(const ListOfMakeShape& theMakeShapeSet);
+
+ /// \return the list of shapes generated from the shape \a theShape
+ GEOMALGOAPI_EXPORT virtual void generated(const GeomShapePtr theShape,
+ ListOfShape& theHistory);
+
+ /// \return the list of shapes modified from the shape \a theShape
+ GEOMALGOAPI_EXPORT virtual void modified(const GeomShapePtr theShape,
+ ListOfShape& theHistory);
+};
+
+#endif