mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-01 04:10:34 +05:00
Mantis issue 0020877: [CEA] problem with GetInPlaceByHistory.
This commit is contained in:
parent
0c3ed0b725
commit
935fb87985
@ -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>
|
||||||
|
|
||||||
@ -29,9 +28,7 @@
|
|||||||
#include <GEOM_Object.hxx>
|
#include <GEOM_Object.hxx>
|
||||||
#include <GEOM_Function.hxx>
|
#include <GEOM_Function.hxx>
|
||||||
|
|
||||||
//#include <NMTAlgo_Splitter1.hxx>
|
|
||||||
#include <GEOMAlgo_Splitter.hxx>
|
#include <GEOMAlgo_Splitter.hxx>
|
||||||
#include <TopTools_IndexedMapOfShape.hxx>
|
|
||||||
|
|
||||||
#include <TDataStd_IntegerArray.hxx>
|
#include <TDataStd_IntegerArray.hxx>
|
||||||
|
|
||||||
@ -47,7 +44,9 @@
|
|||||||
#include <TopoDS_Wire.hxx>
|
#include <TopoDS_Wire.hxx>
|
||||||
#include <TopoDS_Iterator.hxx>
|
#include <TopoDS_Iterator.hxx>
|
||||||
#include <TopTools_MapOfShape.hxx>
|
#include <TopTools_MapOfShape.hxx>
|
||||||
|
#include <TopTools_IndexedMapOfShape.hxx>
|
||||||
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
||||||
|
#include <TopTools_DataMapOfShapeShape.hxx>
|
||||||
|
|
||||||
#include <ShapeFix_ShapeTolerance.hxx>
|
#include <ShapeFix_ShapeTolerance.hxx>
|
||||||
#include <ShapeFix_Shape.hxx>
|
#include <ShapeFix_Shape.hxx>
|
||||||
@ -118,6 +117,8 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
//sklNMTAlgo_Splitter1 PS;
|
//sklNMTAlgo_Splitter1 PS;
|
||||||
GEOMAlgo_Splitter PS;
|
GEOMAlgo_Splitter PS;
|
||||||
|
|
||||||
|
TopTools_DataMapOfShapeShape aCopyMap;
|
||||||
|
|
||||||
if (aType == PARTITION_PARTITION || aType == PARTITION_NO_SELF_INTERSECTIONS)
|
if (aType == PARTITION_PARTITION || aType == PARTITION_NO_SELF_INTERSECTIONS)
|
||||||
{
|
{
|
||||||
Handle(TColStd_HSequenceOfTransient) aShapes = aCI.GetShapes();
|
Handle(TColStd_HSequenceOfTransient) aShapes = aCI.GetShapes();
|
||||||
@ -143,13 +144,25 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
||||||
|
TopoDS_Shape aShape_i_copy;
|
||||||
if (aCopyTool.IsDone())
|
if (aCopyTool.IsDone())
|
||||||
aShape_i = aCopyTool.Shape();
|
aShape_i_copy = aCopyTool.Shape();
|
||||||
else
|
else
|
||||||
Standard_NullObject::Raise("Bad shape detected");
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
//
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_copy_inds;
|
||||||
|
TopExp::MapShapes(aShape_i, aShape_i_inds);
|
||||||
|
TopExp::MapShapes(aShape_i_copy, aShape_i_copy_inds);
|
||||||
|
Standard_Integer nbInds = aShape_i_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aShape_i_inds.FindKey(ie), aShape_i_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
//
|
||||||
TopTools_ListOfShape aSimpleShapes;
|
TopTools_ListOfShape aSimpleShapes;
|
||||||
PrepareShapes(aShape_i, aType, aSimpleShapes);
|
//PrepareShapes(aShape_i, aType, aSimpleShapes);
|
||||||
|
PrepareShapes(aShape_i_copy, aType, aSimpleShapes);
|
||||||
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
||||||
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
||||||
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
||||||
@ -172,13 +185,25 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
||||||
|
TopoDS_Shape aShape_i_copy;
|
||||||
if (aCopyTool.IsDone())
|
if (aCopyTool.IsDone())
|
||||||
aShape_i = aCopyTool.Shape();
|
aShape_i_copy = aCopyTool.Shape();
|
||||||
else
|
else
|
||||||
Standard_NullObject::Raise("Bad shape detected");
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
//
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_copy_inds;
|
||||||
|
TopExp::MapShapes(aShape_i, aShape_i_inds);
|
||||||
|
TopExp::MapShapes(aShape_i_copy, aShape_i_copy_inds);
|
||||||
|
Standard_Integer nbInds = aShape_i_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aShape_i_inds.FindKey(ie), aShape_i_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
//
|
||||||
TopTools_ListOfShape aSimpleShapes;
|
TopTools_ListOfShape aSimpleShapes;
|
||||||
PrepareShapes(aShape_i, aType, aSimpleShapes);
|
//PrepareShapes(aShape_i, aType, aSimpleShapes);
|
||||||
|
PrepareShapes(aShape_i_copy, aType, aSimpleShapes);
|
||||||
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
||||||
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
||||||
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
||||||
@ -197,13 +222,25 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
||||||
|
TopoDS_Shape aShape_i_copy;
|
||||||
if (aCopyTool.IsDone())
|
if (aCopyTool.IsDone())
|
||||||
aShape_i = aCopyTool.Shape();
|
aShape_i_copy = aCopyTool.Shape();
|
||||||
else
|
else
|
||||||
Standard_NullObject::Raise("Bad shape detected");
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
//
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_copy_inds;
|
||||||
|
TopExp::MapShapes(aShape_i, aShape_i_inds);
|
||||||
|
TopExp::MapShapes(aShape_i_copy, aShape_i_copy_inds);
|
||||||
|
Standard_Integer nbInds = aShape_i_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aShape_i_inds.FindKey(ie), aShape_i_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
//
|
||||||
TopTools_ListOfShape aSimpleShapes;
|
TopTools_ListOfShape aSimpleShapes;
|
||||||
PrepareShapes(aShape_i, aType, aSimpleShapes);
|
//PrepareShapes(aShape_i, aType, aSimpleShapes);
|
||||||
|
PrepareShapes(aShape_i_copy, aType, aSimpleShapes);
|
||||||
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
||||||
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
||||||
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
||||||
@ -221,13 +258,25 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
BRepBuilderAPI_Copy aCopyTool (aShape_i);
|
||||||
|
TopoDS_Shape aShape_i_copy;
|
||||||
if (aCopyTool.IsDone())
|
if (aCopyTool.IsDone())
|
||||||
aShape_i = aCopyTool.Shape();
|
aShape_i_copy = aCopyTool.Shape();
|
||||||
else
|
else
|
||||||
Standard_NullObject::Raise("Bad shape detected");
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
//
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShape_i_copy_inds;
|
||||||
|
TopExp::MapShapes(aShape_i, aShape_i_inds);
|
||||||
|
TopExp::MapShapes(aShape_i_copy, aShape_i_copy_inds);
|
||||||
|
Standard_Integer nbInds = aShape_i_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aShape_i_inds.FindKey(ie), aShape_i_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
//
|
||||||
TopTools_ListOfShape aSimpleShapes;
|
TopTools_ListOfShape aSimpleShapes;
|
||||||
PrepareShapes(aShape_i, aType, aSimpleShapes);
|
//PrepareShapes(aShape_i, aType, aSimpleShapes);
|
||||||
|
PrepareShapes(aShape_i_copy, aType, aSimpleShapes);
|
||||||
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
TopTools_ListIteratorOfListOfShape aSimpleIter (aSimpleShapes);
|
||||||
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
for (; aSimpleIter.More(); aSimpleIter.Next()) {
|
||||||
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
const TopoDS_Shape& aSimpleSh = aSimpleIter.Value();
|
||||||
@ -270,11 +319,50 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
Standard_NullObject::Raise("In Half Partition a shape or a plane is null");
|
Standard_NullObject::Raise("In Half Partition a shape or a plane is null");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TopoDS_Shape aShapeArg_copy;
|
||||||
|
TopoDS_Shape aPlaneArg_copy;
|
||||||
|
{
|
||||||
|
BRepBuilderAPI_Copy aCopyTool (aShapeArg);
|
||||||
|
if (aCopyTool.IsDone())
|
||||||
|
aShapeArg_copy = aCopyTool.Shape();
|
||||||
|
else
|
||||||
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aShapeArg_inds;
|
||||||
|
TopTools_IndexedMapOfShape aShapeArg_copy_inds;
|
||||||
|
TopExp::MapShapes(aShapeArg, aShapeArg_inds);
|
||||||
|
TopExp::MapShapes(aShapeArg_copy, aShapeArg_copy_inds);
|
||||||
|
Standard_Integer nbInds = aShapeArg_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aShapeArg_inds.FindKey(ie), aShapeArg_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
BRepBuilderAPI_Copy aCopyTool (aPlaneArg);
|
||||||
|
if (aCopyTool.IsDone())
|
||||||
|
aPlaneArg_copy = aCopyTool.Shape();
|
||||||
|
else
|
||||||
|
Standard_NullObject::Raise("Bad shape detected");
|
||||||
|
//
|
||||||
|
// fill aCopyMap for history
|
||||||
|
TopTools_IndexedMapOfShape aPlaneArg_inds;
|
||||||
|
TopTools_IndexedMapOfShape aPlaneArg_copy_inds;
|
||||||
|
TopExp::MapShapes(aPlaneArg, aPlaneArg_inds);
|
||||||
|
TopExp::MapShapes(aPlaneArg_copy, aPlaneArg_copy_inds);
|
||||||
|
Standard_Integer nbInds = aPlaneArg_inds.Extent();
|
||||||
|
for (Standard_Integer ie = 1; ie <= nbInds; ie++) {
|
||||||
|
aCopyMap.Bind(aPlaneArg_inds.FindKey(ie), aPlaneArg_copy_inds.FindKey(ie));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// add object shapes that are in ListShapes;
|
// add object shapes that are in ListShapes;
|
||||||
PS.AddShape(aShapeArg);
|
PS.AddShape(aShapeArg_copy);
|
||||||
|
//PS.AddShape(aShapeArg);
|
||||||
|
|
||||||
// add tool shapes that are in ListTools and not in ListShapes;
|
// add tool shapes that are in ListTools and not in ListShapes;
|
||||||
PS.AddTool(aPlaneArg);
|
PS.AddTool(aPlaneArg_copy);
|
||||||
|
//PS.AddTool(aPlaneArg);
|
||||||
|
|
||||||
//skl PS.Compute();
|
//skl PS.Compute();
|
||||||
PS.Perform();
|
PS.Perform();
|
||||||
@ -318,6 +406,7 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
const TopTools_IndexedDataMapOfShapeListOfShape& aMR = PS.ImagesResult();
|
const TopTools_IndexedDataMapOfShapeListOfShape& aMR = PS.ImagesResult();
|
||||||
|
|
||||||
// history for all argument shapes
|
// history for all argument shapes
|
||||||
|
// be sure to use aCopyMap
|
||||||
TDF_LabelSequence aLabelSeq;
|
TDF_LabelSequence aLabelSeq;
|
||||||
aFunction->GetDependency(aLabelSeq);
|
aFunction->GetDependency(aLabelSeq);
|
||||||
Standard_Integer nbArg = aLabelSeq.Length();
|
Standard_Integer nbArg = aLabelSeq.Length();
|
||||||
@ -339,6 +428,10 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
|
|
||||||
for (Standard_Integer ie = 1; ie <= nbArgumentEntities; ie++) {
|
for (Standard_Integer ie = 1; ie <= nbArgumentEntities; ie++) {
|
||||||
TopoDS_Shape anEntity = anArgumentIndices.FindKey(ie);
|
TopoDS_Shape anEntity = anArgumentIndices.FindKey(ie);
|
||||||
|
// be sure to use aCopyMap here
|
||||||
|
if (aCopyMap.IsBound(anEntity))
|
||||||
|
anEntity = aCopyMap.Find(anEntity);
|
||||||
|
//
|
||||||
if (!aMR.Contains(anEntity)) continue;
|
if (!aMR.Contains(anEntity)) continue;
|
||||||
|
|
||||||
const TopTools_ListOfShape& aModified = aMR.FindFromKey(anEntity);
|
const TopTools_ListOfShape& aModified = aMR.FindFromKey(anEntity);
|
||||||
@ -371,7 +464,6 @@ Standard_Integer GEOMImpl_PartitionDriver::Execute(TFunction_Logbook& log) const
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
Standard_EXPORT Handle_Standard_Type& GEOMImpl_PartitionDriver_Type_()
|
Standard_EXPORT Handle_Standard_Type& GEOMImpl_PartitionDriver_Type_()
|
||||||
{
|
{
|
||||||
|
|
||||||
static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
|
static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
|
||||||
if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
|
if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
|
||||||
static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
|
static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
|
||||||
@ -379,7 +471,6 @@ Standard_EXPORT Handle_Standard_Type& GEOMImpl_PartitionDriver_Type_()
|
|||||||
static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
|
static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
|
||||||
if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
|
if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
|
||||||
|
|
||||||
|
|
||||||
static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
|
static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
|
||||||
static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_PartitionDriver",
|
static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_PartitionDriver",
|
||||||
sizeof(GEOMImpl_PartitionDriver),
|
sizeof(GEOMImpl_PartitionDriver),
|
||||||
|
Loading…
Reference in New Issue
Block a user