1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0028283: The command bopcheck crashes on the given shape

BOPAlgo_CheckerSI crashed due to building of pcurve for an edge not lying on surface. The fix avoids building of pcurves in this algorithm.
The new flag has been added in BOPAlgo_PaveFiller class (method SetAvoidBuildPCurve). It tells whether to avoid building pcurves. It is worth to set if the result is not used to create splits of faces, as in example with BOPAlgo_CheckerSI.
This commit is contained in:
msv 2016-12-26 15:31:14 +03:00 committed by apn
parent b3d20c7f46
commit 0c5a6d479b
5 changed files with 43 additions and 10 deletions

View File

@ -48,6 +48,7 @@ BOPAlgo_CheckerSI::BOPAlgo_CheckerSI()
{ {
myLevelOfCheck=BOPDS_DS::NbInterfTypes()-1; myLevelOfCheck=BOPDS_DS::NbInterfTypes()-1;
myNonDestructive=Standard_True; myNonDestructive=Standard_True;
SetAvoidBuildPCurve(Standard_True);
} }
//======================================================================= //=======================================================================
//function : ~ //function : ~

View File

@ -39,11 +39,12 @@ BOPAlgo_PaveFiller::BOPAlgo_PaveFiller()
: :
BOPAlgo_Algo() BOPAlgo_Algo()
{ {
myDS=NULL; myDS = NULL;
myIterator=NULL; myIterator = NULL;
myNonDestructive=Standard_False; myNonDestructive = Standard_False;
myIsPrimary=Standard_True; myIsPrimary = Standard_True;
myGlue=BOPAlgo_GlueOff; myAvoidBuildPCurve = Standard_False;
myGlue = BOPAlgo_GlueOff;
} }
//======================================================================= //=======================================================================
//function : //function :
@ -54,11 +55,12 @@ BOPAlgo_PaveFiller::BOPAlgo_PaveFiller
: :
BOPAlgo_Algo(theAllocator) BOPAlgo_Algo(theAllocator)
{ {
myDS=NULL; myDS = NULL;
myIterator=NULL; myIterator = NULL;
myNonDestructive=Standard_False; myNonDestructive = Standard_False;
myIsPrimary=Standard_True; myIsPrimary = Standard_True;
myGlue=BOPAlgo_GlueOff; myAvoidBuildPCurve = Standard_False;
myGlue = BOPAlgo_GlueOff;
} }
//======================================================================= //=======================================================================
//function : ~ //function : ~

View File

@ -108,7 +108,17 @@ public:
//! Returns the glue option of the algorithm //! Returns the glue option of the algorithm
Standard_EXPORT BOPAlgo_GlueEnum Glue() const; Standard_EXPORT BOPAlgo_GlueEnum Glue() const;
//! Sets the flag to avoid building of p-curves of edges on faces
void SetAvoidBuildPCurve(const Standard_Boolean theValue)
{
myAvoidBuildPCurve = theValue;
}
//! Returns the flag to avoid building of p-curves of edges on faces
Standard_Boolean IsAvoidBuildPCurve() const
{
return myAvoidBuildPCurve;
}
protected: protected:
@ -405,6 +415,7 @@ protected:
BOPAlgo_SectionAttribute mySectionAttribute; BOPAlgo_SectionAttribute mySectionAttribute;
Standard_Boolean myNonDestructive; Standard_Boolean myNonDestructive;
Standard_Boolean myIsPrimary; Standard_Boolean myIsPrimary;
Standard_Boolean myAvoidBuildPCurve;
BOPAlgo_GlueEnum myGlue; BOPAlgo_GlueEnum myGlue;

View File

@ -525,6 +525,9 @@ Standard_Integer BOPAlgo_PaveFiller::SplitEdge(const Standard_Integer nE,
//======================================================================= //=======================================================================
void BOPAlgo_PaveFiller::MakePCurves() void BOPAlgo_PaveFiller::MakePCurves()
{ {
if (myAvoidBuildPCurve ||
(!mySectionAttribute.PCurveOnS1() && !mySectionAttribute.PCurveOnS2()))
return;
Standard_Boolean bHasPC; Standard_Boolean bHasPC;
Standard_Integer i, nF1, nF2, aNbC, k, nE, aNbFF, aNbFI, nEx; Standard_Integer i, nF1, nF2, aNbC, k, nE, aNbFF, aNbFI, nEx;
Standard_Integer j, aNbPBIn, aNbPBOn; Standard_Integer j, aNbPBIn, aNbPBOn;

View File

@ -0,0 +1,16 @@
puts "========"
puts "OCC28283"
puts "========"
puts ""
#################################################
# The command bopcheck crashes on the given shape
#################################################
restore [locate_data_file bug28283_shell.brep] a
bfuzzyvalue 1
if [catch {bopcheck a}] {
puts "Error: bopcheck crash"
} else {
puts "OK: bopcheck passed"
}