mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
0022771: An extra vertex produced in result of Boolean section for the cases of closed intersection curves.
This commit is contained in:
parent
999d2599ea
commit
3928aec6c9
@ -495,7 +495,19 @@ is
|
|||||||
is protected;
|
is protected;
|
||||||
---Purpose:
|
---Purpose:
|
||||||
--- Try to put 3D-point <aP> (parameter aT) on the curve <aBC>
|
--- Try to put 3D-point <aP> (parameter aT) on the curve <aBC>
|
||||||
---
|
---
|
||||||
|
|
||||||
|
--modified by NIZNHY-PKV Thu Oct 20 07:17:11 2011f
|
||||||
|
PutClosingPaveOnCurve (me:out;
|
||||||
|
aBC :out Curve from BOPTools;
|
||||||
|
aFF :out SSInterference from BOPTools)
|
||||||
|
is protected;
|
||||||
|
---Purpose:
|
||||||
|
--- Put paves on the curve <aBC> in case when <aBC>
|
||||||
|
-- is closed 3D-curve
|
||||||
|
---
|
||||||
|
--modified by NIZNHY-PKV Thu Oct 20 07:17:11 2011t
|
||||||
|
|
||||||
FindPave (me:out;
|
FindPave (me:out;
|
||||||
aP :Pnt from gp;
|
aP :Pnt from gp;
|
||||||
aTpV: Real from Standard;
|
aTpV: Real from Standard;
|
||||||
@ -560,13 +572,11 @@ is
|
|||||||
RecomputeCommonBlocks(me: in out; nE: Integer from Standard)
|
RecomputeCommonBlocks(me: in out; nE: Integer from Standard)
|
||||||
is private;
|
is private;
|
||||||
|
|
||||||
--modified by NIZNHY-PKV Tue Oct 19 10:28:42 2004f
|
|
||||||
ExtendedTolerance(me:out;
|
ExtendedTolerance(me:out;
|
||||||
nV : Integer from Standard;
|
nV : Integer from Standard;
|
||||||
aTolExt : out Real from Standard)
|
aTolExt : out Real from Standard)
|
||||||
returns Boolean from Standard
|
returns Boolean from Standard
|
||||||
is protected;
|
is protected;
|
||||||
--modified by NIZNHY-PKV Tue Oct 19 10:28:44 2004t
|
|
||||||
|
|
||||||
fields
|
fields
|
||||||
|
|
||||||
|
@ -130,7 +130,6 @@ static
|
|||||||
BOPTools_PaveFiller& aPF,
|
BOPTools_PaveFiller& aPF,
|
||||||
TColStd_SequenceOfInteger& aSeqVx,
|
TColStd_SequenceOfInteger& aSeqVx,
|
||||||
TColStd_SequenceOfReal& aSeqTolVx);
|
TColStd_SequenceOfReal& aSeqTolVx);
|
||||||
//modified by NIZNHY-PKV Wed Aug 31 10:32:52 2011f
|
|
||||||
static
|
static
|
||||||
void ProcessAloneStickVertices(const Standard_Integer nF1,
|
void ProcessAloneStickVertices(const Standard_Integer nF1,
|
||||||
const Standard_Integer nF2,
|
const Standard_Integer nF2,
|
||||||
@ -139,7 +138,6 @@ static
|
|||||||
BOPTools_PaveFiller& aPF,
|
BOPTools_PaveFiller& aPF,
|
||||||
TColStd_SequenceOfInteger& aSeqVx,
|
TColStd_SequenceOfInteger& aSeqVx,
|
||||||
TColStd_SequenceOfReal& aSeqTolVx);
|
TColStd_SequenceOfReal& aSeqTolVx);
|
||||||
//modified by NIZNHY-PKV Wed Aug 31 10:32:59 2011t
|
|
||||||
//wkar OCC334 t
|
//wkar OCC334 t
|
||||||
|
|
||||||
static
|
static
|
||||||
@ -191,13 +189,11 @@ static Standard_Integer RejectBuildingEdge(const IntTools_Curve& theC,
|
|||||||
const TopTools_ListOfShape& theL,
|
const TopTools_ListOfShape& theL,
|
||||||
Standard_Real& theTF);
|
Standard_Real& theTF);
|
||||||
|
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 12:23:05 2011f
|
|
||||||
static
|
static
|
||||||
void CorrectTolR3D(BOPTools_PaveFiller& aPF,
|
void CorrectTolR3D(BOPTools_PaveFiller& aPF,
|
||||||
const BOPTools_SSInterference& aFF,
|
const BOPTools_SSInterference& aFF,
|
||||||
const TColStd_MapOfInteger& aMVStick,
|
const TColStd_MapOfInteger& aMVStick,
|
||||||
Standard_Real& aTolR3D);
|
Standard_Real& aTolR3D);
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 12:23:07 2011t
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: PerformFF
|
// function: PerformFF
|
||||||
@ -206,7 +202,7 @@ static
|
|||||||
void BOPTools_PaveFiller::PerformFF()
|
void BOPTools_PaveFiller::PerformFF()
|
||||||
{
|
{
|
||||||
myIsDone=Standard_False;
|
myIsDone=Standard_False;
|
||||||
Standard_Boolean bIsFound;
|
Standard_Boolean bIsFound, bToSplit;
|
||||||
Standard_Integer n1, n2, anIndexIn=0, nF1, nF2, aNbFFs, aBlockLength;
|
Standard_Integer n1, n2, anIndexIn=0, nF1, nF2, aNbFFs, aBlockLength;
|
||||||
BOPTColStd_IndexedDataMapOfIntegerIndexedMapOfInteger aMapWhat, aMapWith;
|
BOPTColStd_IndexedDataMapOfIntegerIndexedMapOfInteger aMapWhat, aMapWith;
|
||||||
//
|
//
|
||||||
@ -221,7 +217,11 @@ static
|
|||||||
if (aNbFFs > aBlockLength) {
|
if (aNbFFs > aBlockLength) {
|
||||||
aFFs.SetBlockLength(aNbFFs);
|
aFFs.SetBlockLength(aNbFFs);
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:09:57 2011f
|
||||||
|
bToSplit=Standard_False;
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:09:59 2011t
|
||||||
|
|
||||||
for (; myDSIt.More(); myDSIt.Next()) {
|
for (; myDSIt.More(); myDSIt.Next()) {
|
||||||
Standard_Boolean justaddinterference = Standard_True;
|
Standard_Boolean justaddinterference = Standard_True;
|
||||||
myDSIt.Current(n1, n2, justaddinterference);
|
myDSIt.Current(n1, n2, justaddinterference);
|
||||||
@ -402,7 +402,10 @@ static
|
|||||||
if (aTolR3D < 1.e-7){
|
if (aTolR3D < 1.e-7){
|
||||||
aTolR3D=1.e-7;
|
aTolR3D=1.e-7;
|
||||||
}
|
}
|
||||||
aFF.PrepareLines3D();
|
//modified by NIZNHY-PKV Thu Oct 20 07:10:38 2011f
|
||||||
|
aFF.PrepareLines3D(bToSplit);
|
||||||
|
//aFF.PrepareLines3D();
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:10:41 2011t
|
||||||
//
|
//
|
||||||
anIndexIn=0;
|
anIndexIn=0;
|
||||||
Standard_Integer aNbCurves, aNbPoints;
|
Standard_Integer aNbCurves, aNbPoints;
|
||||||
@ -1360,11 +1363,9 @@ static
|
|||||||
aPaveSet.Append(aPaveNew);
|
aPaveSet.Append(aPaveNew);
|
||||||
//<-B
|
//<-B
|
||||||
BOPTools_Tools::UpdateVertex (aC, aT, aV);
|
BOPTools_Tools::UpdateVertex (aC, aT, aV);
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 13:43:27 2011f
|
|
||||||
if(aTolR3D<aTolTresh) {
|
if(aTolR3D<aTolTresh) {
|
||||||
aBB.UpdateVertex(aV, aTolR3D);
|
aBB.UpdateVertex(aV, aTolR3D);
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 13:43:29 2011t
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
@ -1455,7 +1456,7 @@ static
|
|||||||
BOPTools_PaveSet aPSF;
|
BOPTools_PaveSet aPSF;
|
||||||
PrepareSetForFace (nF1, nF2, aPSF);
|
PrepareSetForFace (nF1, nF2, aPSF);
|
||||||
//
|
//
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 12:12:05 2011f
|
//f
|
||||||
{
|
{
|
||||||
Standard_Integer nVX;
|
Standard_Integer nVX;
|
||||||
BOPTools_ListIteratorOfListOfPave aItLP;
|
BOPTools_ListIteratorOfListOfPave aItLP;
|
||||||
@ -1471,7 +1472,7 @@ static
|
|||||||
//
|
//
|
||||||
CorrectTolR3D(*this, aFFi, aMVStick, aTolR3D);
|
CorrectTolR3D(*this, aFFi, aMVStick, aTolR3D);
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Sat Mar 05 12:12:07 2011t
|
//t
|
||||||
//
|
//
|
||||||
BOPTools_SequenceOfCurves& aSCvs=aFFi.Curves();
|
BOPTools_SequenceOfCurves& aSCvs=aFFi.Curves();
|
||||||
aNbCurves=aSCvs.Length();
|
aNbCurves=aSCvs.Length();
|
||||||
@ -1483,7 +1484,7 @@ static
|
|||||||
//
|
//
|
||||||
PutPaveOnCurve (aPSF, aTolR3D, aBC);
|
PutPaveOnCurve (aPSF, aTolR3D, aBC);
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Tue Aug 30 14:54:50 2011f
|
//f
|
||||||
{
|
{
|
||||||
Standard_Integer aNbVtx, jx;
|
Standard_Integer aNbVtx, jx;
|
||||||
Standard_Real aTolVRange;
|
Standard_Real aTolVRange;
|
||||||
@ -1519,7 +1520,7 @@ static
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Tue Aug 30 14:54:56 2011t
|
//t
|
||||||
//
|
//
|
||||||
// Put bounding paves on curves
|
// Put bounding paves on curves
|
||||||
//Check very specific case of cone-cone intersection (OCC13211)
|
//Check very specific case of cone-cone intersection (OCC13211)
|
||||||
@ -1552,14 +1553,23 @@ static
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:14:32 2011f
|
||||||
|
// Put closing pave if needded
|
||||||
|
for (j=1; j<=aNbCurves; ++j) {
|
||||||
|
BOPTools_Curve& aBC=aSCvs(j);
|
||||||
|
PutClosingPaveOnCurve (aBC, aFFi);
|
||||||
|
}
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:14:34 2011t
|
||||||
|
//
|
||||||
// xxx
|
// xxx
|
||||||
for (j=1; j<=aNbCurves; j++) {
|
for (j=1; j<=aNbCurves; j++) {
|
||||||
BOPTools_Curve& aBC=aSCvs(j);
|
BOPTools_Curve& aBC=aSCvs(j);
|
||||||
BOPTools_ListOfPave anOldList;
|
BOPTools_ListOfPave anOldList;
|
||||||
anOldList = aBC.Set().Set();
|
anOldList = aBC.Set().Set();
|
||||||
|
|
||||||
if (aBC.NewPaveBlocks().IsEmpty())
|
if (aBC.NewPaveBlocks().IsEmpty()) {
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
//
|
//
|
||||||
|
|
||||||
BOPTools_CArray1OfESInterference& aESs = myIntrPool->ESInterferences();
|
BOPTools_CArray1OfESInterference& aESs = myIntrPool->ESInterferences();
|
||||||
@ -1885,7 +1895,7 @@ void ProcessAloneStickVertices(const Standard_Integer nF1,
|
|||||||
TColStd_SequenceOfInteger& aSeqVx,
|
TColStd_SequenceOfInteger& aSeqVx,
|
||||||
TColStd_SequenceOfReal& aSeqTolVx)
|
TColStd_SequenceOfReal& aSeqTolVx)
|
||||||
{
|
{
|
||||||
Standard_Boolean bFound;
|
Standard_Boolean bFound, bIsClosed;
|
||||||
Standard_Integer aNbVtx, jx, nV;
|
Standard_Integer aNbVtx, jx, nV;
|
||||||
Standard_Real aTolVRange;
|
Standard_Real aTolVRange;
|
||||||
TColStd_IndexedMapOfInteger aMapUnUsed;
|
TColStd_IndexedMapOfInteger aMapUnUsed;
|
||||||
@ -1937,8 +1947,15 @@ void ProcessAloneStickVertices(const Standard_Integer nF1,
|
|||||||
aNbSCvs=aSCvs.Length();
|
aNbSCvs=aSCvs.Length();
|
||||||
if (aNbSCvs==1) {
|
if (aNbSCvs==1) {
|
||||||
BOPTools_Curve& aBC=aSCvs(1);
|
BOPTools_Curve& aBC=aSCvs(1);
|
||||||
const IntTools_Curve& aC=aBC.Curve();
|
const IntTools_Curve& aIC=aBC.Curve();
|
||||||
Handle (Geom_Curve) aC3D= aC.Curve();
|
Handle (Geom_Curve) aC3D= aIC.Curve();
|
||||||
|
//modified by NIZNHY-PKV Wed Nov 02 13:33:42 2011f
|
||||||
|
//
|
||||||
|
bIsClosed=IntTools_Tools::IsClosed(aC3D);
|
||||||
|
if (bIsClosed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//modified by NIZNHY-PKV Wed Nov 02 13:33:44 2011t
|
||||||
GeomAPI_ProjectPointOnCurve& aProjPT=aCtx.ProjPT(aC3D);
|
GeomAPI_ProjectPointOnCurve& aProjPT=aCtx.ProjPT(aC3D);
|
||||||
//
|
//
|
||||||
for (jx=1; jx<=aNbVtx; ++jx) {
|
for (jx=1; jx<=aNbVtx; ++jx) {
|
||||||
@ -1962,7 +1979,6 @@ void ProcessAloneStickVertices(const Standard_Integer nF1,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Wed Aug 31 10:29:29 2011f
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: ProcessAloneStickVertices
|
// function: ProcessAloneStickVertices
|
||||||
// purpose:
|
// purpose:
|
||||||
@ -2061,7 +2077,6 @@ void ProcessAloneStickVertices(const Standard_Integer nF1,
|
|||||||
}//for (jVU=1; jVU=aNbVU; ++jVU) {
|
}//for (jVU=1; jVU=aNbVU; ++jVU) {
|
||||||
}//if(aType1==GeomAbs_Torus || aType2==GeomAbs_Torus) {
|
}//if(aType1==GeomAbs_Torus || aType2==GeomAbs_Torus) {
|
||||||
}
|
}
|
||||||
//modified by NIZNHY-PKV Wed Aug 31 10:29:37 2011t
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
// function: UnUsedMap
|
// function: UnUsedMap
|
||||||
// purpose:
|
// purpose:
|
||||||
@ -3073,32 +3088,68 @@ Standard_Boolean RejectPaveBlock(const IntTools_Curve& theC,
|
|||||||
const TopoDS_Vertex& theV,
|
const TopoDS_Vertex& theV,
|
||||||
Standard_Real& theRT)
|
Standard_Real& theRT)
|
||||||
{
|
{
|
||||||
|
Standard_Boolean bIsPeriodic, bClosed, isp, c3d;
|
||||||
|
Standard_Real aPeriod, dt, pf, pl, dp, aTol;
|
||||||
|
Handle(Geom_Curve) aC;
|
||||||
|
//
|
||||||
theRT = BRep_Tool::Tolerance(theV);
|
theRT = BRep_Tool::Tolerance(theV);
|
||||||
Handle(Geom_Curve) aC = theC.Curve();
|
aC = theC.Curve();
|
||||||
|
//
|
||||||
Standard_Real pf = aC->FirstParameter();
|
pf = aC->FirstParameter();
|
||||||
Standard_Real pl = aC->LastParameter();
|
pl = aC->LastParameter();
|
||||||
Standard_Real dp = fabs(pl-pf);
|
dp = fabs(pl-pf);
|
||||||
|
aTol=1.e-9;
|
||||||
|
bIsPeriodic=aC->IsPeriodic();
|
||||||
|
bClosed=IntTools_Tools::IsClosed(aC);
|
||||||
|
//
|
||||||
|
isp=Standard_False;
|
||||||
|
if (bIsPeriodic) {
|
||||||
|
aPeriod=aC->Period();
|
||||||
|
isp=(fabs(aPeriod-dp) <= aTol);
|
||||||
|
dt = fabs(theT2-theT1);
|
||||||
|
isp = (isp || fabs(aPeriod-dt) <= aTol);
|
||||||
|
}
|
||||||
|
c3d=(bClosed || isp);
|
||||||
|
//
|
||||||
|
/*
|
||||||
Standard_Boolean isp = (aC->IsPeriodic() && fabs(aC->Period()-dp) <= 1.e-9);
|
Standard_Boolean isp = (aC->IsPeriodic() && fabs(aC->Period()-dp) <= 1.e-9);
|
||||||
Standard_Real dt = fabs(theT2-theT1);
|
Standard_Real dt = fabs(theT2-theT1);
|
||||||
isp = (isp || (aC->IsPeriodic() && fabs(aC->Period()-dt) <= 1.e-9));
|
isp = (isp || (aC->IsPeriodic() && fabs(aC->Period()-dt) <= 1.e-9));
|
||||||
Standard_Boolean c3d = (aC->IsClosed() || isp);
|
Standard_Boolean c3d = (aC->IsClosed() || isp);
|
||||||
|
*/
|
||||||
if(c3d)
|
if(c3d) {
|
||||||
return Standard_False;
|
return !c3d;
|
||||||
|
}
|
||||||
Standard_Real p1 = Max(pf,theT1);
|
//
|
||||||
Standard_Real p2 = Min(pl,theT2);
|
Standard_Real p1, p2, tp, d3d2, aRT2;;
|
||||||
|
//
|
||||||
|
p1 = Max(pf,theT1);
|
||||||
|
p2 = Min(pl,theT2);
|
||||||
if(p2 != p1) {
|
if(p2 != p1) {
|
||||||
if(p2 < p1) {
|
if(p2 < p1) {
|
||||||
Standard_Real tp = p1; p1 = p2; p2 = tp;
|
tp = p1;
|
||||||
|
p1 = p2;
|
||||||
|
p2 = tp;
|
||||||
}
|
}
|
||||||
gp_Pnt pntf, pntl;
|
gp_Pnt pntf, pntl;
|
||||||
aC->D0(p1,pntf);
|
aC->D0(p1,pntf);
|
||||||
aC->D0(p2,pntl);
|
aC->D0(p2,pntl);
|
||||||
|
//
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 09:13:45 2011f
|
||||||
|
//
|
||||||
|
aRT2=theRT*theRT;
|
||||||
|
d3d2 = pntf.SquareDistance(pntl);
|
||||||
|
if(d3d2 > aRT2) {
|
||||||
|
theRT=sqrt(d3d2);
|
||||||
|
}
|
||||||
|
//
|
||||||
|
/*
|
||||||
Standard_Real d3d = pntf.Distance(pntl);
|
Standard_Real d3d = pntf.Distance(pntl);
|
||||||
if(d3d > theRT)
|
if(d3d > theRT) {
|
||||||
theRT = d3d;
|
theRT = d3d;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 09:15:20 2011t
|
||||||
}
|
}
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
@ -3328,3 +3379,66 @@ void CorrectTolR3D(BOPTools_PaveFiller& aPF,
|
|||||||
aTolR3D=aTolR;
|
aTolR3D=aTolR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:18:39 2011f
|
||||||
|
//=======================================================================
|
||||||
|
// function: PutClosingPaveOnCurve
|
||||||
|
// purpose:
|
||||||
|
//=======================================================================
|
||||||
|
void BOPTools_PaveFiller::PutClosingPaveOnCurve(BOPTools_Curve& aBC,
|
||||||
|
BOPTools_SSInterference& aFFi)
|
||||||
|
{
|
||||||
|
Standard_Boolean bIsClosed, bHasBounds, bAdded;
|
||||||
|
Standard_Integer nVC, j;
|
||||||
|
Standard_Real aT[2], aTolR3D, aTC, dT, aTx;
|
||||||
|
gp_Pnt aP[2] ;
|
||||||
|
BOPTools_Pave aPVx;
|
||||||
|
BOPTools_ListIteratorOfListOfPave aItLP;
|
||||||
|
//
|
||||||
|
const IntTools_Curve& aIC=aBC.Curve();
|
||||||
|
const Handle (Geom_Curve)& aC3D=aIC.Curve();
|
||||||
|
if(aC3D.IsNull()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
bIsClosed=IntTools_Tools::IsClosed(aC3D);
|
||||||
|
if (!bIsClosed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
bHasBounds=aIC.HasBounds ();
|
||||||
|
if (!bHasBounds){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
bAdded=Standard_False;
|
||||||
|
dT=Precision::PConfusion();
|
||||||
|
aTolR3D=aFFi.TolR3D();
|
||||||
|
aIC.Bounds (aT[0], aT[1], aP[0], aP[1]);
|
||||||
|
//
|
||||||
|
BOPTools_PaveSet& aFFiPS=aFFi.NewPaveSet();
|
||||||
|
BOPTools_PaveSet& aCPS=aBC.Set();
|
||||||
|
//
|
||||||
|
const BOPTools_ListOfPave& aLP=aCPS.Set();
|
||||||
|
aItLP.Initialize(aLP);
|
||||||
|
for (; aItLP.More() && !bAdded; aItLP.Next()) {
|
||||||
|
const BOPTools_Pave& aPC=aItLP.Value();
|
||||||
|
nVC=aPC.Index();
|
||||||
|
const TopoDS_Vertex aVC=TopoDS::Vertex(myDS->Shape(nVC));
|
||||||
|
aTC=aPC.Param();
|
||||||
|
//
|
||||||
|
for (j=0; j<2; ++j) {
|
||||||
|
if (fabs(aTC-aT[j]) < dT) {
|
||||||
|
aTx=(!j) ? aT[1] : aT[0];
|
||||||
|
aPVx.SetIndex(nVC);
|
||||||
|
aPVx.SetParam(aTx);
|
||||||
|
//
|
||||||
|
aCPS.Append(aPVx);
|
||||||
|
aFFiPS.Append(aPVx);
|
||||||
|
//
|
||||||
|
bAdded=Standard_True;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//modified by NIZNHY-PKV Thu Oct 20 07:18:42 2011t
|
||||||
|
@ -2709,16 +2709,25 @@ Standard_Boolean IsDegeneratedZone(const gp_Pnt2d& aP2d,
|
|||||||
// of the points is less than 2.
|
// of the points is less than 2.
|
||||||
//=========================================================================
|
//=========================================================================
|
||||||
Handle(IntPatch_WLine) ComputePurgedWLine(const Handle(IntPatch_WLine)& theWLine) {
|
Handle(IntPatch_WLine) ComputePurgedWLine(const Handle(IntPatch_WLine)& theWLine) {
|
||||||
Handle(IntPatch_WLine) aResult;
|
|
||||||
Handle(IntPatch_WLine) aLocalWLine;
|
//modified by NIZNHY-PKV Tue Nov 29 12:14:07 2011f
|
||||||
Handle(IntPatch_WLine) aTmpWLine = theWLine;
|
|
||||||
|
|
||||||
Handle(IntSurf_LineOn2S) aLineOn2S = new IntSurf_LineOn2S();
|
|
||||||
aLocalWLine = new IntPatch_WLine(aLineOn2S, Standard_False);
|
|
||||||
Standard_Integer i, k, v, nb, nbvtx;
|
Standard_Integer i, k, v, nb, nbvtx;
|
||||||
|
Handle(IntPatch_WLine) aResult;
|
||||||
nbvtx = theWLine->NbVertex();
|
nbvtx = theWLine->NbVertex();
|
||||||
nb = theWLine->NbPnts();
|
nb = theWLine->NbPnts();
|
||||||
|
if (nb==2) {
|
||||||
|
const IntSurf_PntOn2S& p1 = theWLine->Point(1);
|
||||||
|
const IntSurf_PntOn2S& p2 = theWLine->Point(2);
|
||||||
|
if(p1.Value().IsEqual(p2.Value(), gp::Resolution())) {
|
||||||
|
return aResult;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//
|
||||||
|
Handle(IntPatch_WLine) aLocalWLine;
|
||||||
|
Handle(IntPatch_WLine) aTmpWLine = theWLine;
|
||||||
|
Handle(IntSurf_LineOn2S) aLineOn2S = new IntSurf_LineOn2S();
|
||||||
|
aLocalWLine = new IntPatch_WLine(aLineOn2S, Standard_False);
|
||||||
|
//modified by NIZNHY-PKV Tue Nov 29 12:13:19 2011t
|
||||||
for(i = 1; i <= nb; i++) {
|
for(i = 1; i <= nb; i++) {
|
||||||
aLineOn2S->Add(theWLine->Point(i));
|
aLineOn2S->Add(theWLine->Point(i));
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user