mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0021762: Integration of new Boolean Operation algorithm to OCCT.
Modifications in the source files: 1. Added correction of the tolerance values of the shapes according to the bug 0023610. Modifications in the test scripts: 1. test cases: boolean bcommon_complex C3, boolean bcut_complex F2 O7, boolean bfuse_complex C4 C5 E4, boolean bsection B6 M8 M9 N4 N5 N7, boolean bfuse_simple ZP6, draft angle G8, feat featprism S2 have been marked as invalid according to the bug 0022033; 2. New value of result has been set in the test cases : boolean bopsection D4 boolean bsection R8 as it is correct. 3. test case bugs modalg bug23472 has been rewritten according to the new format of bsection command.
This commit is contained in:
parent
a6b71ffe63
commit
bf315f09ed
@ -40,16 +40,13 @@
|
||||
|
||||
#include <TColStd_Array2OfBoolean.hxx>
|
||||
|
||||
#include <IntTools_Context.hxx>
|
||||
#include <IntTools_Range.hxx>
|
||||
#include <IntTools_ShrunkRange.hxx>
|
||||
#include <IntTools_EdgeEdge.hxx>
|
||||
#include <IntTools_CommonPrt.hxx>
|
||||
|
||||
#include <BOPAlgo_Operation.hxx>
|
||||
#include <BOPAlgo_CheckerSI.hxx>
|
||||
#include <BOPAlgo_BuilderFace.hxx>
|
||||
#include <BOPAlgo_BOP.hxx>
|
||||
|
||||
#include <BOPDS_DS.hxx>
|
||||
#include <BOPDS_VectorOfInterfVV.hxx>
|
||||
@ -59,10 +56,11 @@
|
||||
#include <BOPDS_VectorOfInterfEF.hxx>
|
||||
#include <BOPDS_VectorOfInterfFF.hxx>
|
||||
|
||||
#include <BOPTools_AlgoTools3D.hxx>
|
||||
#include <BOPCol_ListOfShape.hxx>
|
||||
#include <BOPInt_Context.hxx>
|
||||
|
||||
static Standard_Boolean CheckEdge(const TopoDS_Edge& theEdge);
|
||||
#include <BOPTools_AlgoTools3D.hxx>
|
||||
#include <BOPTools_AlgoTools.hxx>
|
||||
#include <BOPCol_ListOfShape.hxx>
|
||||
|
||||
// ================================================================================
|
||||
// function: Constructor
|
||||
@ -271,8 +269,8 @@ void BOPAlgo_ArgumentAnalyzer::TestTypes()
|
||||
Standard_Integer aDim1, aDim2;
|
||||
Standard_Boolean bBadTypes = Standard_False;
|
||||
//
|
||||
aDim1 = BOPAlgo_BOP::Dimension(myShape1);
|
||||
aDim2 = BOPAlgo_BOP::Dimension(myShape2);
|
||||
aDim1 = BOPTools_AlgoTools::Dimension(myShape1);
|
||||
aDim2 = BOPTools_AlgoTools::Dimension(myShape2);
|
||||
if (aDim1 < aDim2) {
|
||||
if (myOperation == BOPAlgo_FUSE ||
|
||||
myOperation == BOPAlgo_CUT21) {
|
||||
@ -421,7 +419,10 @@ void BOPAlgo_ArgumentAnalyzer::TestSmallEdge()
|
||||
{
|
||||
Standard_Integer i = 0;
|
||||
BRepExtrema_DistShapeShape aDist;
|
||||
|
||||
Handle(BOPInt_Context) aCtx;
|
||||
//
|
||||
aCtx = new BOPInt_Context;
|
||||
|
||||
for(i = 0; i < 2; i++) {
|
||||
TopoDS_Shape aS = (i == 0) ? myShape1 : myShape2;
|
||||
|
||||
@ -433,7 +434,7 @@ void BOPAlgo_ArgumentAnalyzer::TestSmallEdge()
|
||||
for(; anExp.More(); anExp.Next()) {
|
||||
TopoDS_Edge anEdge = TopoDS::Edge(anExp.Current());
|
||||
|
||||
if(!CheckEdge(anEdge)) {
|
||||
if(BOPTools_AlgoTools::IsMicroEdge(anEdge, aCtx)) {
|
||||
Standard_Boolean bKeepResult = Standard_True;
|
||||
|
||||
if(myOperation == BOPAlgo_SECTION) {
|
||||
@ -820,29 +821,3 @@ void BOPAlgo_ArgumentAnalyzer::TestMergeEdge()
|
||||
// {
|
||||
// not implemented
|
||||
// }
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
// static function: CheckEdge
|
||||
// purpose:
|
||||
// ----------------------------------------------------------------------
|
||||
Standard_Boolean CheckEdge(const TopoDS_Edge& theEdge)
|
||||
{
|
||||
Handle(IntTools_Context) aContext;
|
||||
TopoDS_Vertex aV1, aV2;
|
||||
|
||||
aContext=new IntTools_Context;
|
||||
TopExp::Vertices(theEdge, aV1, aV2);
|
||||
|
||||
|
||||
if(aV1.IsNull() || aV2.IsNull() || BRep_Tool::Degenerated(theEdge))
|
||||
return Standard_True;
|
||||
Standard_Real aFirst = 0., aLast = 0.;
|
||||
BRep_Tool::Range(theEdge, aFirst, aLast);
|
||||
IntTools_Range aRange(aFirst, aLast);
|
||||
IntTools_ShrunkRange aSR(theEdge, aV1, aV2, aRange, aContext);
|
||||
|
||||
if (!aSR.IsDone() || aSR.ErrorStatus() == 6) {
|
||||
return Standard_False;
|
||||
}
|
||||
return Standard_True;
|
||||
}
|
||||
|
@ -96,24 +96,12 @@ is
|
||||
|
||||
BuildSection(me:out)
|
||||
is protected;
|
||||
|
||||
Dimension(myclass;
|
||||
theS:Shape from TopoDS)
|
||||
returns Integer from Standard;
|
||||
--is protected;
|
||||
|
||||
TreatCompound(myclass;
|
||||
theS:Shape from TopoDS;
|
||||
theLS:out ListOfShape from BOPCol)
|
||||
is protected;
|
||||
|
||||
--modified by NIZHNY-EMV Fri Sep 02 08:34:17 2011
|
||||
|
||||
IsBoundSplits(me:out;
|
||||
theS:Shape from TopoDS;
|
||||
theMEF:out IndexedDataMapOfShapeListOfShape from BOPCol)
|
||||
returns Boolean from Standard
|
||||
is protected;
|
||||
--modified by NIZHNY-EMV Fri Sep 02 08:34:19 2011
|
||||
|
||||
fields
|
||||
myNbArgs : Integer from Standard is protected;
|
||||
|
@ -32,9 +32,7 @@
|
||||
|
||||
#include <BOPCol_ListOfShape.hxx>
|
||||
#include <BOPAlgo_BuilderSolid.hxx>
|
||||
//modified by NIZHNY-EMV Fri Sep 02 08:43:02 2011
|
||||
#include <TopoDS_Edge.hxx>
|
||||
//modified by NIZHNY-EMV Fri Sep 02 08:43:03 2011
|
||||
|
||||
static
|
||||
TopAbs_ShapeEnum TypeToExplore(const Standard_Integer theDim);
|
||||
@ -182,7 +180,7 @@ static
|
||||
}
|
||||
//
|
||||
for (i=0; i<myNbArgs; ++i) {
|
||||
myDims[i]=Dimension(myArgs[i]);
|
||||
myDims[i]=BOPTools_AlgoTools::Dimension(myArgs[i]);
|
||||
if (myDims[i]<0) {
|
||||
myErrorStatus=13; // non-homogenious argument
|
||||
return;
|
||||
@ -606,107 +604,6 @@ static
|
||||
}
|
||||
//
|
||||
//=======================================================================
|
||||
//function : Dimension
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Integer BOPAlgo_BOP::Dimension(const TopoDS_Shape& theS)
|
||||
{
|
||||
Standard_Integer i, iRet, iRx0, iRx;
|
||||
TopAbs_ShapeEnum aTS;
|
||||
BOPCol_ListOfShape aLS;
|
||||
BOPCol_ListIteratorOfListOfShape aIt;
|
||||
//
|
||||
aTS=theS.ShapeType();
|
||||
if (aTS!=TopAbs_COMPOUND) {
|
||||
switch (aTS) {
|
||||
case TopAbs_EDGE:
|
||||
case TopAbs_WIRE:
|
||||
iRet=1;
|
||||
break;
|
||||
case TopAbs_FACE:
|
||||
case TopAbs_SHELL:
|
||||
iRet=2;
|
||||
break;
|
||||
case TopAbs_SOLID:
|
||||
case TopAbs_COMPSOLID:
|
||||
iRet=3;
|
||||
break;
|
||||
default:
|
||||
iRet=0;
|
||||
}
|
||||
return iRet;
|
||||
}
|
||||
//
|
||||
iRet=-1;
|
||||
TreatCompound(theS, aLS);
|
||||
//modified by NIZHNY-EMV Fri Feb 04 11:51:48 2011
|
||||
if(aLS.IsEmpty()) {
|
||||
iRet = -2; //empty compound
|
||||
return iRet;
|
||||
}
|
||||
//modified by NIZHNY-EMV Fri Feb 04 11:51:50 2011
|
||||
aIt.Initialize(aLS);
|
||||
for (i=0; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSx=aIt.Value();
|
||||
iRx=Dimension(aSx);
|
||||
if (!i) {
|
||||
iRx0=iRx;
|
||||
i=1;
|
||||
continue;
|
||||
}
|
||||
if (iRx!=iRx0) {
|
||||
return iRet;// -1
|
||||
}
|
||||
}
|
||||
return iRx;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : TreatCompound
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void BOPAlgo_BOP::TreatCompound(const TopoDS_Shape& theC1,
|
||||
BOPCol_ListOfShape& theLSX)
|
||||
{
|
||||
Standard_Integer aNbC1;
|
||||
TopAbs_ShapeEnum aType;
|
||||
BOPCol_ListOfShape aLC, aLC1;
|
||||
BOPCol_ListIteratorOfListOfShape aIt, aIt1;
|
||||
TopoDS_Iterator aItC;
|
||||
//
|
||||
aLC.Append (theC1);
|
||||
while(1) {
|
||||
aLC1.Clear();
|
||||
aIt.Initialize(aLC);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aC=aIt.Value(); //C is compound
|
||||
//
|
||||
aItC.Initialize(aC);
|
||||
for (; aItC.More(); aItC.Next()) {
|
||||
const TopoDS_Shape& aS=aItC.Value();
|
||||
aType=aS.ShapeType();
|
||||
if (aType==TopAbs_COMPOUND) {
|
||||
aLC1.Append(aS);
|
||||
}
|
||||
else {
|
||||
theLSX.Append(aS);
|
||||
}
|
||||
}
|
||||
}
|
||||
//
|
||||
aNbC1=aLC1.Extent();
|
||||
if (!aNbC1) {
|
||||
break;
|
||||
}
|
||||
//
|
||||
aLC.Clear();
|
||||
aIt.Initialize(aLC1);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSC=aIt.Value();
|
||||
aLC.Append(aSC);
|
||||
}
|
||||
}// while(1)
|
||||
}
|
||||
//=======================================================================
|
||||
//function : TypeToExplore
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
@ -378,4 +378,5 @@
|
||||
{
|
||||
//BRepLib::SameParameter(myShape, 1.e-7, Standard_True);
|
||||
BOPTools_AlgoTools::CorrectTolerances(myShape, 0.01);
|
||||
BOPTools_AlgoTools::CorrectShapeTolerances(myShape);
|
||||
}
|
||||
|
@ -27,6 +27,8 @@
|
||||
#include <TopoDS_Vertex.hxx>
|
||||
#include <TopoDS_Face.hxx>
|
||||
#include <BRep_Tool.hxx>
|
||||
#include <BRep_Builder.hxx>
|
||||
#include <BRepBndLib.hxx>
|
||||
|
||||
#include <BOPCol_MapOfInteger.hxx>
|
||||
|
||||
@ -48,7 +50,8 @@
|
||||
{
|
||||
Standard_Boolean bJustAdd;
|
||||
Standard_Integer iSize, nV, nF, nVSD, iFlag, nVx, i;
|
||||
Standard_Real aT1, aT2;
|
||||
Standard_Real aT1, aT2, aTolF, aTolV;
|
||||
BRep_Builder aBB;
|
||||
//
|
||||
myErrorStatus=0;
|
||||
//
|
||||
@ -89,6 +92,9 @@
|
||||
const TopoDS_Vertex& aV=(*(TopoDS_Vertex *)(&myDS->Shape(nVx)));
|
||||
const TopoDS_Face& aF=(*(TopoDS_Face *)(&myDS->Shape(nF)));
|
||||
//
|
||||
aTolV = BRep_Tool::Tolerance(aV);
|
||||
aTolF = BRep_Tool::Tolerance(aF);
|
||||
//
|
||||
iFlag=myContext->ComputeVF(aV, aF, aT1, aT2);
|
||||
if (!iFlag) {
|
||||
// 1
|
||||
@ -98,6 +104,12 @@
|
||||
aVF.SetUV(aT1, aT2);
|
||||
// 2
|
||||
myDS->AddInterf(nVx, nF);
|
||||
if (aTolV < aTolF) {
|
||||
aBB.UpdateVertex(aV, aTolF);
|
||||
BOPDS_ShapeInfo& aSIV = myDS->ChangeShapeInfo(nVx);
|
||||
Bnd_Box& aBoxV = aSIV.ChangeBox();
|
||||
BRepBndLib::Add(aV, aBoxV);
|
||||
}
|
||||
}
|
||||
}// for (; myIterator->More(); myIterator->Next()) {
|
||||
}// if (iSize) {
|
||||
@ -142,7 +154,7 @@
|
||||
if (aEE.HasIndexNew()) {
|
||||
nV=aEE.IndexNew();
|
||||
if (aMI.Add(nV)) {
|
||||
aLIV.Append(nV);
|
||||
aLIV.Append(nV);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -183,16 +195,16 @@
|
||||
const TopoDS_Face& aF=(*(TopoDS_Face *)(&myDS->Shape(nF)));
|
||||
iFlag=myContext->ComputeVF(aV, aF, aT1, aT2);
|
||||
if (!iFlag) {
|
||||
// 1
|
||||
i=aVFs.Append()-1;
|
||||
BOPDS_InterfVF& aVF=aVFs(i);
|
||||
aVF.SetIndices(nV, nF);
|
||||
aVF.SetUV(aT1, aT2);
|
||||
// 2
|
||||
myDS->AddInterf(nV, nF);
|
||||
//
|
||||
BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn();
|
||||
aMVIn.Add(nV);
|
||||
// 1
|
||||
i=aVFs.Append()-1;
|
||||
BOPDS_InterfVF& aVF=aVFs(i);
|
||||
aVF.SetIndices(nV, nF);
|
||||
aVF.SetUV(aT1, aT2);
|
||||
// 2
|
||||
myDS->AddInterf(nV, nF);
|
||||
//
|
||||
BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn();
|
||||
aMVIn.Add(nV);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -285,7 +285,11 @@
|
||||
myDS->AddInterf(nE, nF);
|
||||
break;
|
||||
}
|
||||
|
||||
//update tolerance of edge if needed
|
||||
if (aTolE < aTolF) {
|
||||
myDS->UpdateEdgeTolerance(nE, aTolF);
|
||||
aTolE = aTolF;
|
||||
}
|
||||
aEF.SetCommonPart(aCPart);
|
||||
// 2
|
||||
myDS->AddInterf(nE, nF);
|
||||
|
@ -94,9 +94,6 @@
|
||||
#include <BOPInt_ShrunkRange.hxx>
|
||||
#include <BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx>
|
||||
|
||||
static Standard_Boolean IsMicroEdge(const TopoDS_Edge& aE,
|
||||
const Handle(BOPInt_Context)& aCtx);
|
||||
|
||||
static void ToleranceFF(const TopoDS_Face& aF1,
|
||||
const TopoDS_Face& aF2,
|
||||
Standard_Real& aTolFF);
|
||||
@ -395,17 +392,16 @@ static void ToleranceFF(const TopoDS_Face& aF1,
|
||||
if (bExist) {
|
||||
if (aMPBAdd.Add(aPBOut)) {
|
||||
if (!aPBOut->IsCommonBlock()) {
|
||||
TopoDS_Edge& aE = *(TopoDS_Edge*)&myDS->Shape(aPBOut->Edge());
|
||||
if (aTolR3D > BRep_Tool::Tolerance(aE)) {
|
||||
BRep_Builder BB;
|
||||
//
|
||||
TopoDS_Vertex& aV1 = *(TopoDS_Vertex*)&myDS->Shape(aPBOut->Pave1().Index());
|
||||
TopoDS_Vertex& aV2 = *(TopoDS_Vertex*)&myDS->Shape(aPBOut->Pave2().Index());
|
||||
//
|
||||
BB.UpdateVertex(aV1, aTolR3D);
|
||||
BB.UpdateVertex(aV2, aTolR3D);
|
||||
BB.UpdateEdge(aE, aTolR3D);
|
||||
Standard_Integer nE;
|
||||
Standard_Real aTolE;
|
||||
//
|
||||
nE = aPBOut->Edge();
|
||||
const TopoDS_Edge& aE = *(TopoDS_Edge*)&myDS->Shape(nE);
|
||||
aTolE = BRep_Tool::Tolerance(aE);
|
||||
if (aTolR3D > aTolE) {
|
||||
myDS->UpdateEdgeTolerance(nE, aTolR3D);
|
||||
}
|
||||
//
|
||||
PreparePostTreatFF(i, aPBOut, aMSCPB, aMVI, aVC);
|
||||
}
|
||||
}
|
||||
@ -421,7 +417,7 @@ static void ToleranceFF(const TopoDS_Face& aF1,
|
||||
BOPTools_AlgoTools::MakePCurve(aES, aF1, aF2, aIC);
|
||||
}
|
||||
//
|
||||
if (IsMicroEdge(aES, myContext)) {
|
||||
if (BOPTools_AlgoTools::IsMicroEdge(aES, myContext)) {
|
||||
continue;
|
||||
}
|
||||
//
|
||||
@ -1694,7 +1690,7 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC,
|
||||
aPB = aIt.Value();
|
||||
if (!aPB->HasShrunkData()) {
|
||||
const TopoDS_Edge& aE = *(TopoDS_Edge*)&myDS->Shape(aPB->Edge());
|
||||
if (IsMicroEdge(aE, myContext)) {
|
||||
if (BOPTools_AlgoTools::IsMicroEdge(aE, myContext)) {
|
||||
aLPB.Remove(aIt);
|
||||
continue;
|
||||
}
|
||||
@ -1905,44 +1901,6 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC,
|
||||
aMVI.Bind(aV2, nV2);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : IsMicroEdge
|
||||
//purpose : Checks if it is possible to compute shrunk range for the edge <aE>.
|
||||
//=======================================================================
|
||||
Standard_Boolean IsMicroEdge(const TopoDS_Edge& aE,
|
||||
const Handle(BOPInt_Context)& aCtx)
|
||||
{
|
||||
Standard_Boolean bRet;
|
||||
Standard_Integer iErr;
|
||||
Standard_Real aT1, aT2, aTmp;
|
||||
Handle(Geom_Curve) aC3D;
|
||||
TopoDS_Vertex aV1, aV2;
|
||||
//
|
||||
bRet=(BRep_Tool::Degenerated(aE) ||
|
||||
!BRep_Tool::IsGeometric(aE));
|
||||
if (bRet) {
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
aC3D=BRep_Tool::Curve(aE, aT1, aT2);
|
||||
TopExp::Vertices(aE, aV1, aV2);
|
||||
aT1=BRep_Tool::Parameter(aV1, aE);
|
||||
aT2=BRep_Tool::Parameter(aV2, aE);
|
||||
if (aT2<aT1) {
|
||||
aTmp=aT1;
|
||||
aT1=aT2;
|
||||
aT2=aTmp;
|
||||
}
|
||||
//
|
||||
BOPInt_ShrunkRange aSR;
|
||||
aSR.SetData(aE, aT1, aT2, aV1, aV2, aCtx);
|
||||
aSR.Perform();
|
||||
iErr=aSR.ErrorStatus();
|
||||
bRet = !(iErr==0);
|
||||
//
|
||||
return bRet;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : ToleranceFF
|
||||
//purpose : Computes the TolFF according to the tolerance value and
|
||||
|
@ -530,7 +530,14 @@ is
|
||||
theIndex:Integer from Standard;
|
||||
theLP:out ListOfPave from BOPDS);
|
||||
---Purpose: Fills theLP with sorted paves
|
||||
-- of the shape with index theIndex
|
||||
-- of the shape with index theIndex
|
||||
|
||||
UpdateEdgeTolerance(me:out;
|
||||
theIndex:Integer from Standard;
|
||||
theTolerance:Real from Standard);
|
||||
---Purpose:
|
||||
--- Updates tolerance of the sub-shapes of the shape with index <theIndex>.
|
||||
---
|
||||
|
||||
fields
|
||||
myAllocator : BaseAllocator from BOPCol is protected;
|
||||
|
@ -1658,6 +1658,39 @@ static
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// function: UpdateTolerance
|
||||
// purpose:
|
||||
//=======================================================================
|
||||
void BOPDS_DS::UpdateEdgeTolerance(const Standard_Integer nE,
|
||||
const Standard_Real aTol)
|
||||
{
|
||||
Standard_Integer nV;
|
||||
Standard_Real aTolV;
|
||||
BRep_Builder aBB;
|
||||
BOPCol_ListIteratorOfListOfInteger aIt;
|
||||
//
|
||||
const TopoDS_Edge& aE = *(TopoDS_Edge*)&Shape(nE);
|
||||
aBB.UpdateEdge(aE, aTol);
|
||||
BOPDS_ShapeInfo& aSIE=ChangeShapeInfo(nE);
|
||||
Bnd_Box& aBoxE=aSIE.ChangeBox();
|
||||
BRepBndLib::Add(aE, aBoxE);
|
||||
//
|
||||
const BOPCol_ListOfInteger& aLI = aSIE.SubShapes();
|
||||
aIt.Initialize(aLI);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
nV = aIt.Value();
|
||||
const TopoDS_Vertex& aV = *(TopoDS_Vertex*)&Shape(nV);
|
||||
aTolV = BRep_Tool::Tolerance(aV);
|
||||
if (aTolV < aTol) {
|
||||
aBB.UpdateVertex(aV, aTol);
|
||||
BOPDS_ShapeInfo& aSIV = ChangeShapeInfo(nV);
|
||||
Bnd_Box& aBoxV = aSIV.ChangeBox();
|
||||
BRepBndLib::Add(aV, aBoxV);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : TotalShapes
|
||||
//purpose :
|
||||
|
@ -447,5 +447,26 @@ is
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Computes projection of the point <aP> on the face <theFace>.
|
||||
--- Returns TRUE if projection is done.
|
||||
--- Returns TRUE if projection is done.
|
||||
|
||||
IsMicroEdge(myclass;
|
||||
theEdge : Edge from TopoDS;
|
||||
theContext : Context from BOPInt)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Checks if it is possible to compute shrunk range for the edge <aE>.
|
||||
---
|
||||
|
||||
CorrectShapeTolerances (myclass;
|
||||
theS: Shape from TopoDS);
|
||||
---Purpose:
|
||||
--- Corrects tolerance values of the sub-shapes of the shape <theS> if needed.
|
||||
---
|
||||
|
||||
Dimension(myclass;
|
||||
theS:Shape from TopoDS)
|
||||
returns Integer from Standard;
|
||||
---Purpose:
|
||||
--- Retutns dimension of the shape <theS>.
|
||||
|
||||
end AlgoTools;
|
||||
|
@ -67,6 +67,7 @@
|
||||
#include <gp_Cylinder.hxx>
|
||||
#include <Geom_CylindricalSurface.hxx>
|
||||
#include <gp_Lin.hxx>
|
||||
#include <BOPInt_ShrunkRange.hxx>
|
||||
|
||||
static
|
||||
Standard_Real AngleWithRef(const gp_Dir& theD1,
|
||||
@ -1753,6 +1754,45 @@ Standard_Real fsqrt(Standard_Real val)
|
||||
}
|
||||
return bRet;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : IsMicroEdge
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BOPTools_AlgoTools::IsMicroEdge(const TopoDS_Edge& aE,
|
||||
const Handle(BOPInt_Context)& aCtx)
|
||||
{
|
||||
Standard_Boolean bRet;
|
||||
Standard_Integer iErr;
|
||||
Standard_Real aT1, aT2, aTmp;
|
||||
Handle(Geom_Curve) aC3D;
|
||||
TopoDS_Vertex aV1, aV2;
|
||||
//
|
||||
bRet=(BRep_Tool::Degenerated(aE) ||
|
||||
!BRep_Tool::IsGeometric(aE));
|
||||
if (bRet) {
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
aC3D=BRep_Tool::Curve(aE, aT1, aT2);
|
||||
TopExp::Vertices(aE, aV1, aV2);
|
||||
aT1=BRep_Tool::Parameter(aV1, aE);
|
||||
aT2=BRep_Tool::Parameter(aV2, aE);
|
||||
if (aT2<aT1) {
|
||||
aTmp=aT1;
|
||||
aT1=aT2;
|
||||
aT2=aTmp;
|
||||
}
|
||||
//
|
||||
BOPInt_ShrunkRange aSR;
|
||||
aSR.SetData(aE, aT1, aT2, aV1, aV2, aCtx);
|
||||
aSR.Perform();
|
||||
iErr=aSR.ErrorStatus();
|
||||
bRet = !(iErr==0);
|
||||
//
|
||||
return bRet;
|
||||
}
|
||||
|
||||
/*
|
||||
//=======================================================================
|
||||
//function : AreFacesSameDomain
|
||||
|
@ -80,21 +80,19 @@
|
||||
#include <Geom2d_Curve.hxx>
|
||||
#include <GeomAdaptor_Surface.hxx>
|
||||
|
||||
|
||||
|
||||
static
|
||||
void CheckEdge (const TopoDS_Edge& E,
|
||||
const Standard_Real aMaxTol);
|
||||
const Standard_Real aMaxTol);
|
||||
static
|
||||
void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
const TopoDS_Face& S,
|
||||
const Standard_Real aMaxTol);
|
||||
const TopoDS_Face& S,
|
||||
const Standard_Real aMaxTol);
|
||||
static
|
||||
Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
const Adaptor3d_Curve& Other,
|
||||
const Standard_Real Tol,
|
||||
const Standard_Boolean SameParameter,
|
||||
Standard_Real& aNewTolerance);
|
||||
const Adaptor3d_Curve& Other,
|
||||
const Standard_Real Tol,
|
||||
const Standard_Boolean SameParameter,
|
||||
Standard_Real& aNewTolerance);
|
||||
|
||||
static
|
||||
void CorrectVertexTolerance(const TopoDS_Edge& aE);
|
||||
@ -102,12 +100,18 @@ static
|
||||
static
|
||||
void CorrectWires(const TopoDS_Face& aF);
|
||||
|
||||
static
|
||||
void UpdateEdges(const TopoDS_Face& aF);
|
||||
|
||||
static
|
||||
void UpdateVertices(const TopoDS_Edge& aE);
|
||||
|
||||
//=======================================================================
|
||||
// Function : CorrectTolerances
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void BOPTools_AlgoTools::CorrectTolerances(const TopoDS_Shape& aShape,
|
||||
const Standard_Real aMaxTol)
|
||||
const Standard_Real aMaxTol)
|
||||
{
|
||||
BOPTools_AlgoTools::CorrectPointOnCurve(aShape, aMaxTol);
|
||||
BOPTools_AlgoTools::CorrectCurveOnSurface(aShape, aMaxTol);
|
||||
@ -118,7 +122,7 @@ static
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void BOPTools_AlgoTools::CorrectPointOnCurve(const TopoDS_Shape& S,
|
||||
const Standard_Real aMaxTol)
|
||||
const Standard_Real aMaxTol)
|
||||
{
|
||||
Standard_Integer i, aNb;
|
||||
TopTools_IndexedMapOfShape Edges;
|
||||
@ -135,7 +139,7 @@ static
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void BOPTools_AlgoTools::CorrectCurveOnSurface(const TopoDS_Shape& S,
|
||||
const Standard_Real aMaxTol)
|
||||
const Standard_Real aMaxTol)
|
||||
{
|
||||
Standard_Integer i, aNbFaces, j, aNbEdges;
|
||||
TopTools_IndexedMapOfShape Faces;
|
||||
@ -206,7 +210,7 @@ void CorrectWires(const TopoDS_Face& aFx)
|
||||
aS->D0(aP2D.X(), aP2D.Y(), aP);
|
||||
aD2=aPV.SquareDistance(aP);
|
||||
if (aD2>aD2max) {
|
||||
aD2max=aD2;
|
||||
aD2max=aD2;
|
||||
}
|
||||
}
|
||||
if (aD2max>aTol2) {
|
||||
@ -221,8 +225,8 @@ void CorrectWires(const TopoDS_Face& aFx)
|
||||
// purpose : Correct tolerances for Edge
|
||||
//=======================================================================
|
||||
void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
const TopoDS_Face& S,
|
||||
const Standard_Real aMaxTol)
|
||||
const TopoDS_Face& S,
|
||||
const Standard_Real aMaxTol)
|
||||
{
|
||||
//
|
||||
// 1. Minimum of conditions to Perform
|
||||
@ -251,7 +255,7 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
if (cr->IsCurve3D()) {
|
||||
unique++;
|
||||
if (myCref.IsNull() && !cr->Curve3D().IsNull()) {
|
||||
myCref = cr;
|
||||
myCref = cr;
|
||||
}
|
||||
}
|
||||
itcrx.Next();
|
||||
@ -269,8 +273,8 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
while (itcrx.More()) {
|
||||
const Handle(BRep_CurveRepresentation)& cr = itcrx.Value();
|
||||
if (cr->IsCurveOnSurface()) {
|
||||
myCref = cr;
|
||||
break;
|
||||
myCref = cr;
|
||||
break;
|
||||
}
|
||||
itcrx.Next();
|
||||
}
|
||||
@ -291,19 +295,19 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
|
||||
else {
|
||||
if (myCref->IsCurve3D()) {
|
||||
Handle(Geom_Curve) C3dx = Handle(Geom_Curve)::DownCast
|
||||
(myCref->Curve3D()->Transformed (myCref->Location().Transformation()));
|
||||
GeomAdaptor_Curve GAC3d(C3dx, First, Last);
|
||||
myHCurve = new GeomAdaptor_HCurve(GAC3d);
|
||||
Handle(Geom_Curve) C3dx = Handle(Geom_Curve)::DownCast
|
||||
(myCref->Curve3D()->Transformed (myCref->Location().Transformation()));
|
||||
GeomAdaptor_Curve GAC3d(C3dx, First, Last);
|
||||
myHCurve = new GeomAdaptor_HCurve(GAC3d);
|
||||
}
|
||||
else { // curve on surface
|
||||
Handle(Geom_Surface) Sref = myCref->Surface();
|
||||
Sref = Handle(Geom_Surface)::DownCast(Sref->Transformed(myCref->Location().Transformation()));
|
||||
const Handle(Geom2d_Curve)& PCref = myCref->PCurve();
|
||||
Handle(GeomAdaptor_HSurface) GAHSref = new GeomAdaptor_HSurface(Sref);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPCref = new Geom2dAdaptor_HCurve(PCref, First, Last);
|
||||
Adaptor3d_CurveOnSurface ACSref(GHPCref,GAHSref);
|
||||
myHCurve = new Adaptor3d_HCurveOnSurface(ACSref);
|
||||
Handle(Geom_Surface) Sref = myCref->Surface();
|
||||
Sref = Handle(Geom_Surface)::DownCast(Sref->Transformed(myCref->Location().Transformation()));
|
||||
const Handle(Geom2d_Curve)& PCref = myCref->PCurve();
|
||||
Handle(GeomAdaptor_HSurface) GAHSref = new GeomAdaptor_HSurface(Sref);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPCref = new Geom2dAdaptor_HCurve(PCref, First, Last);
|
||||
Adaptor3d_CurveOnSurface ACSref(GHPCref,GAHSref);
|
||||
myHCurve = new Adaptor3d_HCurveOnSurface(ACSref);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -340,59 +344,59 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
while (itcr.More()) {
|
||||
const Handle(BRep_CurveRepresentation)& cr = itcr.Value();
|
||||
if (cr != myCref && cr->IsCurveOnSurface(Su,L)) {
|
||||
pcurvefound = Standard_True;
|
||||
const Handle(BRep_GCurve)& GC = *((Handle(BRep_GCurve)*)&cr);
|
||||
Standard_Real f,l;
|
||||
GC->Range(f,l);
|
||||
if (SameRange && (f != First || l != Last)) {
|
||||
return ;//BRepCheck_InvalidSameRangeFlag);
|
||||
if (SameParameter) {
|
||||
return; //BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
pcurvefound = Standard_True;
|
||||
const Handle(BRep_GCurve)& GC = *((Handle(BRep_GCurve)*)&cr);
|
||||
Standard_Real f,l;
|
||||
GC->Range(f,l);
|
||||
if (SameRange && (f != First || l != Last)) {
|
||||
return ;//BRepCheck_InvalidSameRangeFlag);
|
||||
if (SameParameter) {
|
||||
return; //BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
}
|
||||
|
||||
Handle(Geom_Surface) Sb = cr->Surface();
|
||||
Sb = Handle(Geom_Surface)::DownCast (Su->Transformed(L.Transformation()));
|
||||
Handle(Geom2d_Curve) PC = cr->PCurve();
|
||||
Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(Sb);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPC = new Geom2dAdaptor_HCurve(PC,f,l);
|
||||
Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
|
||||
ok = Validate(myHCurve->Curve(), ACS, Tol, SameParameter, aNewTol);
|
||||
if (ok) {
|
||||
if (cr->IsCurveOnClosedSurface()) {
|
||||
//return ;// BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
|
||||
}
|
||||
else {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
|
||||
}
|
||||
if (SameParameter) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
//
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
//
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
|
||||
if (cr->IsCurveOnClosedSurface()) {
|
||||
// checkclosed = Standard_True;
|
||||
GHPC->ChangeCurve2d().Load(cr->PCurve2(),f,l); // same bounds
|
||||
ACS.Load(GAHS); // sans doute inutile
|
||||
ACS.Load(GHPC); // meme remarque...
|
||||
ok = Validate(myHCurve->Curve(),ACS,Tol,SameParameter, aNewTol);
|
||||
if (ok) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
|
||||
if (SameParameter) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
}
|
||||
Handle(Geom_Surface) Sb = cr->Surface();
|
||||
Sb = Handle(Geom_Surface)::DownCast (Su->Transformed(L.Transformation()));
|
||||
Handle(Geom2d_Curve) PC = cr->PCurve();
|
||||
Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(Sb);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPC = new Geom2dAdaptor_HCurve(PC,f,l);
|
||||
Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
|
||||
ok = Validate(myHCurve->Curve(), ACS, Tol, SameParameter, aNewTol);
|
||||
if (ok) {
|
||||
if (cr->IsCurveOnClosedSurface()) {
|
||||
//return ;// BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
|
||||
}
|
||||
else {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
|
||||
}
|
||||
if (SameParameter) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
//
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
//
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
|
||||
if (cr->IsCurveOnClosedSurface()) {
|
||||
//checkclosed = Standard_True;
|
||||
GHPC->ChangeCurve2d().Load(cr->PCurve2(),f,l); // same bounds
|
||||
ACS.Load(GAHS); // sans doute inutile
|
||||
ACS.Load(GHPC); // meme remarque...
|
||||
ok = Validate(myHCurve->Curve(),ACS,Tol,SameParameter, aNewTol);
|
||||
if (ok) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnClosedSurface);
|
||||
if (SameParameter) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidSameParameterFlag);
|
||||
}
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
itcr.Next();
|
||||
}
|
||||
@ -401,45 +405,45 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
Handle(Geom_Plane) P;
|
||||
Handle(Standard_Type) styp = Su->DynamicType();
|
||||
if (styp == STANDARD_TYPE(Geom_RectangularTrimmedSurface)) {
|
||||
P = Handle(Geom_Plane)::DownCast(Handle(Geom_RectangularTrimmedSurface)::
|
||||
DownCast(Su)->BasisSurface());
|
||||
P = Handle(Geom_Plane)::DownCast(Handle(Geom_RectangularTrimmedSurface)::
|
||||
DownCast(Su)->BasisSurface());
|
||||
}
|
||||
else {
|
||||
P = Handle(Geom_Plane)::DownCast(Su);
|
||||
P = Handle(Geom_Plane)::DownCast(Su);
|
||||
}
|
||||
if (P.IsNull()) { // not a plane
|
||||
return;//BRepCheck::Add(lst,BRepCheck_NoCurveOnSurface);
|
||||
return;//BRepCheck::Add(lst,BRepCheck_NoCurveOnSurface);
|
||||
}
|
||||
|
||||
else {// on fait la projection a la volee, comme BRep_Tool
|
||||
P = Handle(Geom_Plane)::DownCast(P->Transformed(L.Transformation()));
|
||||
//on projette Cref sur ce plan
|
||||
Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(P);
|
||||
|
||||
// Dub - Normalement myHCurve est une GeomAdaptor_HCurve
|
||||
GeomAdaptor_Curve& Gac = Handle(GeomAdaptor_HCurve)::DownCast(myHCurve)->ChangeCurve();
|
||||
Handle(Geom_Curve) C3dx = Gac.Curve();
|
||||
Handle(Geom_Curve) ProjOnPlane = GeomProjLib::ProjectOnPlane
|
||||
(new Geom_TrimmedCurve(C3dx,First,Last), P, P->Position().Direction(), Standard_True);
|
||||
|
||||
Handle(GeomAdaptor_HCurve) aHCurve = new GeomAdaptor_HCurve(ProjOnPlane);
|
||||
|
||||
ProjLib_ProjectedCurve proj(GAHS,aHCurve);
|
||||
Handle(Geom2d_Curve) PC = Geom2dAdaptor::MakeCurve(proj);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPC =
|
||||
new Geom2dAdaptor_HCurve(PC, myHCurve->FirstParameter(), myHCurve->LastParameter());
|
||||
|
||||
Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
|
||||
|
||||
Standard_Boolean okx = Validate(myHCurve->Curve(),ACS,
|
||||
Tol,Standard_True, aNewTol); // voir dub...
|
||||
if (okx) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
P = Handle(Geom_Plane)::DownCast(P->Transformed(L.Transformation()));
|
||||
//on projette Cref sur ce plan
|
||||
Handle(GeomAdaptor_HSurface) GAHS = new GeomAdaptor_HSurface(P);
|
||||
|
||||
// Dub - Normalement myHCurve est une GeomAdaptor_HCurve
|
||||
GeomAdaptor_Curve& Gac = Handle(GeomAdaptor_HCurve)::DownCast(myHCurve)->ChangeCurve();
|
||||
Handle(Geom_Curve) C3dx = Gac.Curve();
|
||||
Handle(Geom_Curve) ProjOnPlane = GeomProjLib::ProjectOnPlane
|
||||
(new Geom_TrimmedCurve(C3dx,First,Last), P, P->Position().Direction(), Standard_True);
|
||||
|
||||
Handle(GeomAdaptor_HCurve) aHCurve = new GeomAdaptor_HCurve(ProjOnPlane);
|
||||
|
||||
ProjLib_ProjectedCurve proj(GAHS,aHCurve);
|
||||
Handle(Geom2d_Curve) PC = Geom2dAdaptor::MakeCurve(proj);
|
||||
Handle(Geom2dAdaptor_HCurve) GHPC =
|
||||
new Geom2dAdaptor_HCurve(PC, myHCurve->FirstParameter(), myHCurve->LastParameter());
|
||||
|
||||
Adaptor3d_CurveOnSurface ACS(GHPC,GAHS);
|
||||
|
||||
Standard_Boolean okx = Validate(myHCurve->Curve(),ACS,
|
||||
Tol,Standard_True, aNewTol); // voir dub...
|
||||
if (okx) {
|
||||
//return;//BRepCheck::Add(lst,BRepCheck_InvalidCurveOnSurface);
|
||||
if (aNewTol<aMaxTol) {
|
||||
TE->UpdateTolerance(aNewTol+Delta);
|
||||
CorrectVertexTolerance(myShape);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}//end of if (!pcurvefound) {
|
||||
@ -447,6 +451,31 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape,
|
||||
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// Function : CorrectShapeTolerances
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void BOPTools_AlgoTools::CorrectShapeTolerances(const TopoDS_Shape& aShape)
|
||||
{
|
||||
TopExp_Explorer aExp;
|
||||
Standard_Integer aDim;
|
||||
//
|
||||
aDim=Dimension(aShape);
|
||||
if (aDim == 1) {
|
||||
aExp.Init(aShape, TopAbs_EDGE);
|
||||
for (; aExp.More(); aExp.Next()) {
|
||||
const TopoDS_Edge& aE = *(TopoDS_Edge*)&aExp.Current();
|
||||
UpdateVertices(aE);
|
||||
}
|
||||
} else {
|
||||
aExp.Init(aShape, TopAbs_FACE);
|
||||
for (; aExp.More(); aExp.Next()) {
|
||||
const TopoDS_Face& aF = *(TopoDS_Face*)&aExp.Current();
|
||||
UpdateEdges(aF);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : CorrectVertexTolerance
|
||||
//purpose :
|
||||
@ -471,18 +500,16 @@ void CorrectVertexTolerance(const TopoDS_Edge& aE)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#define NCONTROL 23
|
||||
//=======================================================================
|
||||
//function : Validate
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
const Adaptor3d_Curve& Other,
|
||||
const Standard_Real Tol,
|
||||
const Standard_Boolean SameParameter,
|
||||
Standard_Real& aNewTolerance)
|
||||
const Adaptor3d_Curve& Other,
|
||||
const Standard_Real Tol,
|
||||
const Standard_Boolean SameParameter,
|
||||
Standard_Real& aNewTolerance)
|
||||
{
|
||||
Standard_Real First, Last, MaxDistance, aD, Tol2;
|
||||
|
||||
@ -495,8 +522,8 @@ Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
|
||||
Standard_Boolean aFlag=Standard_False;
|
||||
Standard_Boolean proj = (!SameParameter ||
|
||||
First != Other.FirstParameter() ||
|
||||
Last != Other.LastParameter());
|
||||
First != Other.FirstParameter() ||
|
||||
Last != Other.LastParameter());
|
||||
//
|
||||
// 1.
|
||||
if (!proj) {
|
||||
@ -508,10 +535,10 @@ Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
aD=pref.SquareDistance(pother);
|
||||
|
||||
if (aD > Tol2) {
|
||||
if (aD>MaxDistance) {
|
||||
MaxDistance=aD;
|
||||
}
|
||||
aFlag=Standard_True;
|
||||
if (aD>MaxDistance) {
|
||||
MaxDistance=aD;
|
||||
}
|
||||
aFlag=Standard_True;
|
||||
}
|
||||
}
|
||||
|
||||
@ -535,7 +562,7 @@ Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
aD = pd.SquareDistance(pdo);
|
||||
if (aD > Tol2) {
|
||||
if (aD>MaxDistance) {
|
||||
MaxDistance=aD;
|
||||
MaxDistance=aD;
|
||||
}
|
||||
aFlag=Standard_True;
|
||||
}
|
||||
@ -560,25 +587,25 @@ Standard_Boolean Validate(const Adaptor3d_Curve& CRef,
|
||||
|
||||
refd.Perform(pother,rprm);
|
||||
if (!refd.IsDone() || refd.SquareDistance() > Tol2) {
|
||||
if (refd.IsDone()) {
|
||||
aD=refd.SquareDistance();
|
||||
if (aD > Tol2 && aD>MaxDistance) {
|
||||
aFlag=Standard_True;
|
||||
MaxDistance=aD;
|
||||
}
|
||||
}
|
||||
if (refd.IsDone()) {
|
||||
aD=refd.SquareDistance();
|
||||
if (aD > Tol2 && aD>MaxDistance) {
|
||||
aFlag=Standard_True;
|
||||
MaxDistance=aD;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
otherd.Perform(pref,oprm);
|
||||
if (!otherd.IsDone() || otherd.SquareDistance() > Tol2) {
|
||||
|
||||
if (otherd.IsDone()) {
|
||||
aD=otherd.SquareDistance();
|
||||
if (aD > Tol2 && aD>MaxDistance) {
|
||||
aFlag=Standard_True;
|
||||
MaxDistance=aD;
|
||||
}
|
||||
}
|
||||
|
||||
if (otherd.IsDone()) {
|
||||
aD=otherd.SquareDistance();
|
||||
if (aD > Tol2 && aD>MaxDistance) {
|
||||
aFlag=Standard_True;
|
||||
MaxDistance=aD;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -627,46 +654,101 @@ void CheckEdge (const TopoDS_Edge& Ed, const Standard_Real aMaxTol)
|
||||
TopLoc_Location L = (Eloc * loc).Predivided(aVertex.Location());
|
||||
|
||||
if (cr->IsCurve3D()) {
|
||||
const Handle(Geom_Curve)& C = cr->Curve3D();
|
||||
if (!C.IsNull()) {
|
||||
itpr.Initialize(TV->Points());
|
||||
while (itpr.More()) {
|
||||
const Handle(BRep_PointRepresentation)& pr = itpr.Value();
|
||||
if (pr->IsPointOnCurve(C,L)) {
|
||||
Controlp = C->Value(pr->Parameter());
|
||||
Controlp.Transform(L.Transformation());
|
||||
aD2=prep.SquareDistance(Controlp);
|
||||
if (aD2 > Tol) {
|
||||
aNewTolerance=sqrt(aD2)+dd;
|
||||
if (aNewTolerance<aMaxTol)
|
||||
TV->UpdateTolerance(aNewTolerance);
|
||||
}
|
||||
}
|
||||
itpr.Next();
|
||||
}
|
||||
|
||||
TopAbs_Orientation orv = aVertex.Orientation();
|
||||
if (orv == TopAbs_FORWARD || orv == TopAbs_REVERSED) {
|
||||
const Handle(BRep_GCurve)& GC = *((Handle(BRep_GCurve)*)&cr);
|
||||
|
||||
if (orv==TopAbs_FORWARD)
|
||||
Controlp = C->Value(GC->First());
|
||||
else
|
||||
Controlp = C->Value(GC->Last());
|
||||
|
||||
Controlp.Transform(L.Transformation());
|
||||
aD2=prep.SquareDistance(Controlp);
|
||||
|
||||
if (aD2 > Tol) {
|
||||
aNewTolerance=sqrt(aD2)+dd;
|
||||
if (aNewTolerance<aMaxTol)
|
||||
TV->UpdateTolerance(aNewTolerance);
|
||||
}
|
||||
}
|
||||
}
|
||||
const Handle(Geom_Curve)& C = cr->Curve3D();
|
||||
if (!C.IsNull()) {
|
||||
itpr.Initialize(TV->Points());
|
||||
while (itpr.More()) {
|
||||
const Handle(BRep_PointRepresentation)& pr = itpr.Value();
|
||||
if (pr->IsPointOnCurve(C,L)) {
|
||||
Controlp = C->Value(pr->Parameter());
|
||||
Controlp.Transform(L.Transformation());
|
||||
aD2=prep.SquareDistance(Controlp);
|
||||
if (aD2 > Tol) {
|
||||
aNewTolerance=sqrt(aD2)+dd;
|
||||
if (aNewTolerance<aMaxTol)
|
||||
TV->UpdateTolerance(aNewTolerance);
|
||||
}
|
||||
}
|
||||
itpr.Next();
|
||||
}
|
||||
|
||||
TopAbs_Orientation orv = aVertex.Orientation();
|
||||
if (orv == TopAbs_FORWARD || orv == TopAbs_REVERSED) {
|
||||
const Handle(BRep_GCurve)& GC = *((Handle(BRep_GCurve)*)&cr);
|
||||
|
||||
if (orv==TopAbs_FORWARD)
|
||||
Controlp = C->Value(GC->First());
|
||||
else
|
||||
Controlp = C->Value(GC->Last());
|
||||
|
||||
Controlp.Transform(L.Transformation());
|
||||
aD2=prep.SquareDistance(Controlp);
|
||||
|
||||
if (aD2 > Tol) {
|
||||
aNewTolerance=sqrt(aD2)+dd;
|
||||
if (aNewTolerance<aMaxTol)
|
||||
TV->UpdateTolerance(aNewTolerance);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
itcr.Next();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// Function : UpdateVertices
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void UpdateVertices(const TopoDS_Edge& aE)
|
||||
{
|
||||
Standard_Real aTolE, aTolV;
|
||||
TopoDS_Iterator aItE;
|
||||
BRep_Builder aBB;
|
||||
//
|
||||
aTolE = BRep_Tool::Tolerance(aE);
|
||||
aItE.Initialize(aE);
|
||||
for (; aItE.More(); aItE.Next()) {
|
||||
const TopoDS_Vertex& aV = *(TopoDS_Vertex*)&aItE.Value();
|
||||
aTolV = BRep_Tool::Tolerance(aV);
|
||||
if (aTolV < aTolE) {
|
||||
aBB.UpdateVertex(aV, aTolE);
|
||||
}
|
||||
}
|
||||
}
|
||||
//=======================================================================
|
||||
// Function : UpdateEdges
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
void UpdateEdges(const TopoDS_Face& aF)
|
||||
{
|
||||
Standard_Real aTolF, aTolE, aTolV;
|
||||
TopoDS_Iterator aItF, aItW, aItE;
|
||||
BRep_Builder aBB;
|
||||
//
|
||||
aTolF = BRep_Tool::Tolerance(aF);
|
||||
aItF.Initialize(aF);
|
||||
for (; aItF.More(); aItF.Next()) {
|
||||
const TopoDS_Shape& aS = aItF.Value();
|
||||
if (aS.ShapeType()==TopAbs_WIRE) {
|
||||
aItW.Initialize(aS);
|
||||
for (; aItW.More(); aItW.Next()) {
|
||||
const TopoDS_Edge& aE = *(TopoDS_Edge*)&aItW.Value();
|
||||
aTolE = BRep_Tool::Tolerance(aE);
|
||||
if (aTolE < aTolF) {
|
||||
aBB.UpdateEdge(aE, aTolF);
|
||||
aTolE = aTolF;
|
||||
}
|
||||
UpdateVertices(aE);
|
||||
}
|
||||
}
|
||||
else {
|
||||
const TopoDS_Vertex& aV = *(TopoDS_Vertex*)&aItF.Value();
|
||||
aTolV = BRep_Tool::Tolerance(aV);
|
||||
if (aTolV < aTolE) {
|
||||
aBB.UpdateVertex(aV, aTolF);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,11 @@
|
||||
|
||||
#include <BRep_Tool.hxx>
|
||||
#include <BRep_Builder.hxx>
|
||||
#include <TopoDS_Iterator.hxx>
|
||||
|
||||
static
|
||||
void TreatCompound(const TopoDS_Shape& theC1,
|
||||
BOPCol_ListOfShape& theLSX);
|
||||
|
||||
//=======================================================================
|
||||
// function: UpdateVertex
|
||||
@ -412,3 +416,103 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
//=======================================================================
|
||||
//function : Dimension
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Integer BOPTools_AlgoTools::Dimension(const TopoDS_Shape& theS)
|
||||
{
|
||||
Standard_Integer i, iRet, iRx0, iRx;
|
||||
TopAbs_ShapeEnum aTS;
|
||||
BOPCol_ListOfShape aLS;
|
||||
BOPCol_ListIteratorOfListOfShape aIt;
|
||||
//
|
||||
aTS=theS.ShapeType();
|
||||
if (aTS!=TopAbs_COMPOUND) {
|
||||
switch (aTS) {
|
||||
case TopAbs_EDGE:
|
||||
case TopAbs_WIRE:
|
||||
iRet=1;
|
||||
break;
|
||||
case TopAbs_FACE:
|
||||
case TopAbs_SHELL:
|
||||
iRet=2;
|
||||
break;
|
||||
case TopAbs_SOLID:
|
||||
case TopAbs_COMPSOLID:
|
||||
iRet=3;
|
||||
break;
|
||||
default:
|
||||
iRet=0;
|
||||
}
|
||||
return iRet;
|
||||
}
|
||||
//
|
||||
iRet=-1;
|
||||
TreatCompound(theS, aLS);
|
||||
if(aLS.IsEmpty()) {
|
||||
iRet = -2; //empty compound
|
||||
return iRet;
|
||||
}
|
||||
aIt.Initialize(aLS);
|
||||
for (i=0; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSx=aIt.Value();
|
||||
iRx=Dimension(aSx);
|
||||
if (!i) {
|
||||
iRx0=iRx;
|
||||
i=1;
|
||||
continue;
|
||||
}
|
||||
if (iRx!=iRx0) {
|
||||
return iRet;// -1
|
||||
}
|
||||
}
|
||||
return iRx;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : TreatCompound
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
void TreatCompound(const TopoDS_Shape& theC1,
|
||||
BOPCol_ListOfShape& theLSX)
|
||||
{
|
||||
Standard_Integer aNbC1;
|
||||
TopAbs_ShapeEnum aType;
|
||||
BOPCol_ListOfShape aLC, aLC1;
|
||||
BOPCol_ListIteratorOfListOfShape aIt, aIt1;
|
||||
TopoDS_Iterator aItC;
|
||||
//
|
||||
aLC.Append (theC1);
|
||||
while(1) {
|
||||
aLC1.Clear();
|
||||
aIt.Initialize(aLC);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aC=aIt.Value(); //C is compound
|
||||
//
|
||||
aItC.Initialize(aC);
|
||||
for (; aItC.More(); aItC.Next()) {
|
||||
const TopoDS_Shape& aS=aItC.Value();
|
||||
aType=aS.ShapeType();
|
||||
if (aType==TopAbs_COMPOUND) {
|
||||
aLC1.Append(aS);
|
||||
}
|
||||
else {
|
||||
theLSX.Append(aS);
|
||||
}
|
||||
}
|
||||
}
|
||||
//
|
||||
aNbC1=aLC1.Extent();
|
||||
if (!aNbC1) {
|
||||
break;
|
||||
}
|
||||
//
|
||||
aLC.Clear();
|
||||
aIt.Initialize(aLC1);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSC=aIt.Value();
|
||||
aLC.Append(aSC);
|
||||
}
|
||||
}// while(1)
|
||||
}
|
||||
|
@ -2409,11 +2409,7 @@ void CalculPtsInterTriEdgeCoplanaires2(const Standard_Integer TriSurfID,
|
||||
Standard_Real pe2p= Cote.Dot(PE2);
|
||||
Standard_Real pt1p= Cote.Dot(PT1);
|
||||
Standard_Real pt2p= Cote.Dot(PT2);
|
||||
#ifndef DEB
|
||||
Standard_Real lambda1 =0.,lambda2 =0.,alpha1 =0.,alpha2 =0.;
|
||||
#else
|
||||
Standard_Real lambda1,lambda2,alpha1,alpha2;
|
||||
#endif
|
||||
Standard_Real lambda1=0., lambda2=0., alpha1=0., alpha2=0.;
|
||||
IntPolyh_Point PEP1,PTP1,PEP2,PTP2;
|
||||
|
||||
if (pe1p>pe2p) {
|
||||
|
@ -1,8 +1,7 @@
|
||||
# Original bug : pro9373
|
||||
# Date : 24mar98
|
||||
|
||||
puts "TODO #22911 ALL: Faulty shapes in variables faulty_1 to faulty_4"
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
puts "TODO #22911 ALL: Error : The $command is not valid. The square is 0."
|
||||
|
||||
restore [locate_data_file pro9373a.rle] a
|
||||
restore [locate_data_file pro9373b.rle] b
|
||||
|
@ -1,8 +1,9 @@
|
||||
# Original bug : buc60127
|
||||
# Date : 18mar98
|
||||
|
||||
puts "TODO #22911 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
puts "TODO #22911 ALL: An exception was caught"
|
||||
puts "TODO #22911 ALL: \\*\\* Exception \\*\\*.*"
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file buc60127-part.rle] part
|
||||
restore [locate_data_file buc60127-tool.rle] tool
|
||||
|
@ -1,5 +1,4 @@
|
||||
puts "TODO #22911 ALL: Faulty shapes in variables faulty_1 to faulty_4"
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
puts "TODO #22911 ALL: Error : The $command is not valid. The square is 0."
|
||||
|
||||
restore [locate_data_file CTO908_topo108-o.brep] obj
|
||||
restore [locate_data_file pro12903b.rle] out
|
||||
|
@ -1,3 +1,5 @@
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
|
||||
restore [locate_data_file box.brep] b
|
||||
restore [locate_data_file c2.brep] c
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
|
||||
restore [locate_data_file c2.brep] c
|
||||
restore [locate_data_file box.brep] b
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
# Original bug : pro14260
|
||||
# Date : 21 Sept 98
|
||||
puts "TODO #22911 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO #22911 ALL: Error : The square of result shape is"
|
||||
|
||||
restore [locate_data_file CTO900_pro14260c.rle] c
|
||||
restore [locate_data_file pro14260d.rle] d
|
||||
|
@ -20,7 +20,8 @@ if { [string compare $os "CentOS55-64"] == 0
|
||||
|| [string compare $os "Debian40-64"] == 0
|
||||
|| [string compare $os "Mandriva2008"] == 0
|
||||
|| [string compare $os "Mandriva2008-64"] == 0
|
||||
|| [string compare $os "SL51-64"] == 0
|
||||
|| [string compare $os "SL51-64"] == 0
|
||||
|| [string compare $os "windows"] == 0
|
||||
} {
|
||||
puts "TODO OCC22911 $os: Error : The square of result shape is"
|
||||
}
|
||||
|
@ -13,4 +13,4 @@ updatetolerance b 1
|
||||
bop a b
|
||||
bopsection result
|
||||
|
||||
set length 529.118
|
||||
set length 523.479
|
||||
|
@ -1,3 +1,6 @@
|
||||
puts "TODO #22911 ALL: Error : The $command is not valid. The length is 0."
|
||||
puts "TODO #22911 ALL: Error : The length of result shape is "
|
||||
|
||||
restore [locate_data_file a16] a
|
||||
restore [locate_data_file b16] b
|
||||
bsection result a b
|
||||
|
@ -1,3 +1,7 @@
|
||||
puts "TODO #22911 ALL: An exception was caught"
|
||||
puts "TODO #22911 ALL: \\*\\* Exception \\*\\*.*"
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file lh3d_px1.brep] a
|
||||
|
||||
#removing intersection of faces a_3 and a_220
|
||||
|
@ -1,3 +1,7 @@
|
||||
puts "TODO #22911 ALL: An exception was caught"
|
||||
puts "TODO #22911 ALL: \\*\\* Exception \\*\\*.*"
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file lh3d_px1.brep] a
|
||||
|
||||
#removing intersection of faces a_3 and a_220
|
||||
|
@ -1,3 +1,12 @@
|
||||
if { [array get env os_type] != "" } {
|
||||
set os $env(os_type)
|
||||
}
|
||||
if { [string compare $os "windows"] == 0 } {
|
||||
puts "TODO #22911 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
} else {
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
}
|
||||
|
||||
cpulimit 1000
|
||||
|
||||
restore [locate_data_file lh3d_px2.brep] a
|
||||
|
@ -1,3 +1,7 @@
|
||||
puts "TODO #22911 ALL: An exception was caught"
|
||||
puts "TODO #22911 ALL: \\*\\* Exception \\*\\*.*"
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
|
||||
cpulimit 900
|
||||
|
||||
restore [locate_data_file lh3d_px2.brep] a
|
||||
|
@ -1,3 +1,14 @@
|
||||
if { [array get env os_type] != "" } {
|
||||
set os $env(os_type)
|
||||
}
|
||||
if { [string compare $os "windows"] == 0 } {
|
||||
puts "TODO #22911 ALL: An exception was caught"
|
||||
puts "TODO #22911 ALL: \\*\\* Exception \\*\\*.*"
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
} else {
|
||||
puts "TODO #22911 ALL: TEST INCOMPLETE"
|
||||
}
|
||||
|
||||
cpulimit 900
|
||||
|
||||
restore [locate_data_file lh3d_ro1.brep] a
|
||||
|
@ -8,4 +8,4 @@ restore [locate_data_file ger61235b.brep] object
|
||||
|
||||
bsection result object tool
|
||||
|
||||
set length 16.4762
|
||||
set length 11.8242
|
||||
|
@ -9,7 +9,7 @@ puts ""
|
||||
restore [locate_data_file bug23472_f1.brep] f1
|
||||
restore [locate_data_file bug23472_f2.brep] f2
|
||||
|
||||
bsection result f1 f2 -2d
|
||||
bsection result f1 f2
|
||||
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [lprops result] full l
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#F6----------------------------------------------
|
||||
puts "TODO OCC22803 All:Error in depouille"
|
||||
puts "TODO OCC22803 All:Error : The depouille can not be build"
|
||||
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO OCC22803 All:Error : The square of result shape is "
|
||||
polyline p 0 0 3 0 0 0 10 0 0 10 0 3
|
||||
beziercurve bc 4 10 0 3 7 0 2 3 0 3 0 0 3
|
||||
mkedge bc bc
|
||||
|
@ -1,4 +1,5 @@
|
||||
# cts20088
|
||||
puts "TODO OCC22810 ALL: Error : The square of result shape is"
|
||||
|
||||
restore [locate_data_file cts20088_base.brep] base
|
||||
restore [locate_data_file contour_pkv.rle] cont
|
||||
|
Loading…
x
Reference in New Issue
Block a user