mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-27 01:40:34 +05:00
GlueFaces/Edges: protect initial shapes from modifications.
This commit is contained in:
parent
824e67eabf
commit
0b11bb6195
@ -18,7 +18,6 @@
|
|||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
//
|
//
|
||||||
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
//
|
|
||||||
|
|
||||||
#include <Standard_Stream.hxx>
|
#include <Standard_Stream.hxx>
|
||||||
|
|
||||||
@ -39,6 +38,7 @@
|
|||||||
#include "utilities.h"
|
#include "utilities.h"
|
||||||
|
|
||||||
#include <TDataStd_IntegerArray.hxx>
|
#include <TDataStd_IntegerArray.hxx>
|
||||||
|
#include <TNaming_CopyShape.hxx>
|
||||||
|
|
||||||
#include <TopExp.hxx>
|
#include <TopExp.hxx>
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
@ -47,6 +47,8 @@
|
|||||||
#include <TopTools_ListOfShape.hxx>
|
#include <TopTools_ListOfShape.hxx>
|
||||||
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
||||||
|
|
||||||
|
#include <TColStd_IndexedDataMapOfTransientTransient.hxx>
|
||||||
|
|
||||||
#include <ShapeFix_Shape.hxx>
|
#include <ShapeFix_Shape.hxx>
|
||||||
|
|
||||||
#include <Standard_NullObject.hxx>
|
#include <Standard_NullObject.hxx>
|
||||||
@ -743,17 +745,29 @@ Standard_Integer GEOMImpl_GlueDriver::Execute(TFunction_Logbook& log) const
|
|||||||
|
|
||||||
Standard_Boolean aKeepNonSolids = aCI.GetKeepNonSolids();
|
Standard_Boolean aKeepNonSolids = aCI.GetKeepNonSolids();
|
||||||
|
|
||||||
|
// Copy initial shape to prevent its modification by gluing algorithm
|
||||||
|
TopoDS_Shape aShapeCopy;
|
||||||
|
TColStd_IndexedDataMapOfTransientTransient aMapTShapes;
|
||||||
|
TNaming_CopyShape::CopyTool(aShapeBase, aMapTShapes, aShapeCopy);
|
||||||
|
|
||||||
if (aType == GLUE_FACES) {
|
if (aType == GLUE_FACES) {
|
||||||
//aShape = GlueFacesWithWarnings(aShapeBase, tol3d, aKeepNonSolids, aWrn);
|
//aShape = GlueFacesWithWarnings(aShapeBase, tol3d, aKeepNonSolids, aWrn);
|
||||||
aShape = GlueWithWarnings(aShapeBase, tol3d, TopAbs_FACE, aKeepNonSolids, aWrn);
|
aShape = GlueWithWarnings(aShapeCopy, tol3d, TopAbs_FACE, aKeepNonSolids, aWrn);
|
||||||
}
|
}
|
||||||
else if (aType == GLUE_EDGES) {
|
else if (aType == GLUE_EDGES) {
|
||||||
aShape = GlueWithWarnings(aShapeBase, tol3d, TopAbs_EDGE, aKeepNonSolids, aWrn);
|
aShape = GlueWithWarnings(aShapeCopy, tol3d, TopAbs_EDGE, aKeepNonSolids, aWrn);
|
||||||
}
|
}
|
||||||
else if (aType == GLUE_FACES_BY_LIST || aType == GLUE_EDGES_BY_LIST) {
|
else if (aType == GLUE_FACES_BY_LIST || aType == GLUE_EDGES_BY_LIST) {
|
||||||
Handle(TColStd_HSequenceOfTransient) SF = aCI.GetFaces();
|
Handle(TColStd_HSequenceOfTransient) SF = aCI.GetFaces();
|
||||||
TopTools_MapOfShape aFaces;
|
TopTools_MapOfShape aFaces;
|
||||||
int i = 1;
|
int i = 1;
|
||||||
|
|
||||||
|
// map sub-shapes to select faces from aShapeCopy
|
||||||
|
TopTools_IndexedMapOfShape aShapeBase_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShapeCopy_inds;
|
||||||
|
TopExp::MapShapes(aShapeBase, aShapeBase_inds);
|
||||||
|
TopExp::MapShapes(aShapeCopy, aShapeCopy_inds);
|
||||||
|
|
||||||
for (; i <= SF->Length(); i++) {
|
for (; i <= SF->Length(); i++) {
|
||||||
Handle(Standard_Transient) anItem = SF->Value(i);
|
Handle(Standard_Transient) anItem = SF->Value(i);
|
||||||
if (anItem.IsNull())
|
if (anItem.IsNull())
|
||||||
@ -764,15 +778,22 @@ Standard_Integer GEOMImpl_GlueDriver::Execute(TFunction_Logbook& log) const
|
|||||||
TopoDS_Shape aFace = aRefSh->GetValue();
|
TopoDS_Shape aFace = aRefSh->GetValue();
|
||||||
if (aFace.IsNull())
|
if (aFace.IsNull())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// get copy of face to correspond to aShapeCopy
|
||||||
|
if (aShapeBase_inds.Contains(aFace)) {
|
||||||
|
int ind = aShapeBase_inds.FindIndex(aFace);
|
||||||
|
aFace = aShapeCopy_inds.FindKey(ind);
|
||||||
|
|
||||||
aFaces.Add(aFace);
|
aFaces.Add(aFace);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Standard_Boolean aGlueAllEdges = Standard_False;
|
Standard_Boolean aGlueAllEdges = Standard_False;
|
||||||
if (aType == GLUE_FACES_BY_LIST)
|
if (aType == GLUE_FACES_BY_LIST)
|
||||||
aGlueAllEdges = aCI.GetGlueAllEdges();
|
aGlueAllEdges = aCI.GetGlueAllEdges();
|
||||||
|
|
||||||
//aShape = GlueFacesByList(aShapeBase, tol3d, aKeepNonSolids, aFaces);
|
//aShape = GlueFacesByList(aShapeBase, tol3d, aKeepNonSolids, aFaces);
|
||||||
aShape = GlueByList(aShapeBase, tol3d, aKeepNonSolids, aFaces, aGlueAllEdges);
|
aShape = GlueByList(aShapeCopy, tol3d, aKeepNonSolids, aFaces, aGlueAllEdges);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aShape.IsNull()) return 0;
|
if (aShape.IsNull()) return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user