mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-29 10:50:35 +05:00
Mantis issue 0020603: MakePartition fails on 1st try but succeeds on 2nd try. A fix by PKV (in addition to OCCT fix).
This commit is contained in:
parent
1859b94fce
commit
53bdd5f837
@ -19,11 +19,11 @@
|
|||||||
//
|
//
|
||||||
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
//
|
//
|
||||||
// File: NMTTools_PaveFiller_2.cxx
|
// File: NMTTools_PaveFiller_2.cxx
|
||||||
// Created: Mon Dec 8 12:02:56 2003
|
// Created: Mon Dec 8 12:02:56 2003
|
||||||
// Author: Peter KURNEV
|
// Author: Peter KURNEV
|
||||||
// <pkv@irinox>
|
// <pkv@irinox>
|
||||||
//
|
|
||||||
#include <NMTTools_PaveFiller.ixx>
|
#include <NMTTools_PaveFiller.ixx>
|
||||||
|
|
||||||
#include <Precision.hxx>
|
#include <Precision.hxx>
|
||||||
@ -48,33 +48,47 @@
|
|||||||
#include <BOPTools_VEInterference.hxx>
|
#include <BOPTools_VEInterference.hxx>
|
||||||
|
|
||||||
#include <BooleanOperations_AncestorsSeqAndSuccessorsSeq.hxx>
|
#include <BooleanOperations_AncestorsSeqAndSuccessorsSeq.hxx>
|
||||||
|
|
||||||
#include <NMTDS_Iterator.hxx>
|
#include <NMTDS_Iterator.hxx>
|
||||||
#include <NMTDS_ShapesDataStructure.hxx>
|
#include <NMTDS_ShapesDataStructure.hxx>
|
||||||
#include <NMTDS_InterfPool.hxx>
|
#include <NMTDS_InterfPool.hxx>
|
||||||
//
|
|
||||||
|
#include <Standard_Version.hxx>
|
||||||
|
|
||||||
// Modified Thu Sep 14 14:35:18 2006
|
// Modified Thu Sep 14 14:35:18 2006
|
||||||
// Contribution of Samtech www.samcef.com BEGIN
|
// Contribution of Samtech www.samcef.com BEGIN
|
||||||
#include <BOPTools_IndexedMapOfCoupleOfInteger.hxx>
|
#include <BOPTools_IndexedMapOfCoupleOfInteger.hxx>
|
||||||
#include <BOPTools_CoupleOfInteger.hxx>
|
#include <BOPTools_CoupleOfInteger.hxx>
|
||||||
#include <BooleanOperations_OnceExplorer.hxx>
|
#include <BooleanOperations_OnceExplorer.hxx>
|
||||||
|
|
||||||
|
|
||||||
static
|
static
|
||||||
Standard_Boolean Contains(const TopoDS_Edge& aE,
|
Standard_Boolean Contains(const TopoDS_Edge& aE,
|
||||||
const TopoDS_Vertex& aV);
|
const TopoDS_Vertex& aV);
|
||||||
// Contribution of Samtech www.samcef.com END
|
// Contribution of Samtech www.samcef.com END
|
||||||
|
|
||||||
|
// In OCCT6.3.0sp9 is changed a signature of IntTools_Context::ComputeVE() method
|
||||||
|
#ifdef OCC_VERSION_SERVICEPACK
|
||||||
|
#if (OCC_VERSION_MAJOR << 24 | OCC_VERSION_MINOR << 16 | OCC_VERSION_MAINTENANCE << 8 | OCC_VERSION_SERVICEPACK) > 0x06030008
|
||||||
|
#define OCCT_6_3_0_sp_9
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: PerformVE
|
// function: PerformVE
|
||||||
// purpose:
|
// purpose:
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void NMTTools_PaveFiller::PerformVE()
|
void NMTTools_PaveFiller::PerformVE()
|
||||||
{
|
{
|
||||||
myIsDone=Standard_False;
|
myIsDone=Standard_False;
|
||||||
//
|
//
|
||||||
Standard_Boolean bJustAdd;
|
Standard_Boolean bJustAdd;
|
||||||
Standard_Integer n1, n2, anIndexIn, aFlag, aWhat, aWith, aNbVEs, aBlockLength, iSDV, nV1;
|
Standard_Integer n1, n2, anIndexIn, aFlag, aWhat;
|
||||||
|
Standard_Integer aWith, aNbVEs, aBlockLength, iSDV, nV1;
|
||||||
Standard_Real aT;
|
Standard_Real aT;
|
||||||
|
#ifdef OCCT_6_3_0_sp_9
|
||||||
|
Standard_Boolean bToUpdateVertex;
|
||||||
|
Standard_Real aDist;
|
||||||
|
#endif
|
||||||
TopoDS_Vertex aV1;
|
TopoDS_Vertex aV1;
|
||||||
TopoDS_Edge aE2;
|
TopoDS_Edge aE2;
|
||||||
BOPTools_IndexedMapOfCoupleOfInteger aSnareMap;
|
BOPTools_IndexedMapOfCoupleOfInteger aSnareMap;
|
||||||
@ -103,7 +117,6 @@ static
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
if(bJustAdd) {
|
if(bJustAdd) {
|
||||||
//myIntrPool->AddInterference(aWhat, aWith, BooleanOperations_VertexEdge, anIndexIn);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// Edge
|
// Edge
|
||||||
@ -145,7 +158,13 @@ static
|
|||||||
// Contribution of Samtech www.samcef.com END
|
// Contribution of Samtech www.samcef.com END
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
//modified by NIZNHY-PKV Mon Dec 28 08:58:05 2009f
|
||||||
|
#ifdef OCCT_6_3_0_sp_9
|
||||||
|
aFlag=myContext.ComputeVE (aV1, aE2, aT, bToUpdateVertex, aDist);
|
||||||
|
#else
|
||||||
aFlag=myContext.ComputeVE (aV1, aE2, aT);
|
aFlag=myContext.ComputeVE (aV1, aE2, aT);
|
||||||
|
#endif
|
||||||
|
//modified by NIZNHY-PKV Mon Dec 28 08:58:13 2009t
|
||||||
//
|
//
|
||||||
if (!aFlag) {
|
if (!aFlag) {
|
||||||
// Add Interference to the Pool
|
// Add Interference to the Pool
|
||||||
@ -168,22 +187,30 @@ static
|
|||||||
// Insert Vertex in Interference Object
|
// Insert Vertex in Interference Object
|
||||||
BOPTools_VEInterference& aVE=aVEs(anIndexIn);
|
BOPTools_VEInterference& aVE=aVEs(anIndexIn);
|
||||||
aVE.SetNewShape(aWhat);
|
aVE.SetNewShape(aWhat);
|
||||||
// qqf
|
//
|
||||||
{
|
myIP->Add(aWhat, aWith, Standard_True, NMTDS_TI_VE);
|
||||||
myIP->Add(aWhat, aWith, Standard_True, NMTDS_TI_VE);
|
//
|
||||||
|
//modified by NIZNHY-PKV Mon Dec 28 09:00:54 2009f
|
||||||
|
#ifdef OCCT_6_3_0_sp_9
|
||||||
|
if (bToUpdateVertex) {
|
||||||
|
BRep_Builder aBB;
|
||||||
|
//
|
||||||
|
aBB.UpdateVertex(aV1, aDist);
|
||||||
}
|
}
|
||||||
// qqt
|
#endif
|
||||||
}
|
//modified by NIZNHY-PKV Mon Dec 28 09:00:57 2009t
|
||||||
//myIntrPool->AddInterference(aWhat, aWith, BooleanOperations_VertexEdge, anIndexIn);
|
//
|
||||||
|
} //if (!aFlag) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
myIsDone=Standard_True;
|
myIsDone=Standard_True;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: PrepareEdges
|
// function: PrepareEdges
|
||||||
// purpose:
|
// purpose:
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void NMTTools_PaveFiller::PrepareEdges()
|
void NMTTools_PaveFiller::PrepareEdges()
|
||||||
{
|
{
|
||||||
Standard_Integer i, nV, ii, aNBSuc, ip, aNbShapesObject;
|
Standard_Integer i, nV, ii, aNBSuc, ip, aNbShapesObject;
|
||||||
Standard_Real aT;
|
Standard_Real aT;
|
||||||
|
Loading…
Reference in New Issue
Block a user