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:
parent
b3d20c7f46
commit
0c5a6d479b
@ -48,6 +48,7 @@ BOPAlgo_CheckerSI::BOPAlgo_CheckerSI()
|
||||
{
|
||||
myLevelOfCheck=BOPDS_DS::NbInterfTypes()-1;
|
||||
myNonDestructive=Standard_True;
|
||||
SetAvoidBuildPCurve(Standard_True);
|
||||
}
|
||||
//=======================================================================
|
||||
//function : ~
|
||||
|
@ -43,6 +43,7 @@ BOPAlgo_PaveFiller::BOPAlgo_PaveFiller()
|
||||
myIterator = NULL;
|
||||
myNonDestructive = Standard_False;
|
||||
myIsPrimary = Standard_True;
|
||||
myAvoidBuildPCurve = Standard_False;
|
||||
myGlue = BOPAlgo_GlueOff;
|
||||
}
|
||||
//=======================================================================
|
||||
@ -58,6 +59,7 @@ BOPAlgo_PaveFiller::BOPAlgo_PaveFiller
|
||||
myIterator = NULL;
|
||||
myNonDestructive = Standard_False;
|
||||
myIsPrimary = Standard_True;
|
||||
myAvoidBuildPCurve = Standard_False;
|
||||
myGlue = BOPAlgo_GlueOff;
|
||||
}
|
||||
//=======================================================================
|
||||
|
@ -108,7 +108,17 @@ public:
|
||||
//! Returns the glue option of the algorithm
|
||||
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:
|
||||
|
||||
@ -405,6 +415,7 @@ protected:
|
||||
BOPAlgo_SectionAttribute mySectionAttribute;
|
||||
Standard_Boolean myNonDestructive;
|
||||
Standard_Boolean myIsPrimary;
|
||||
Standard_Boolean myAvoidBuildPCurve;
|
||||
BOPAlgo_GlueEnum myGlue;
|
||||
|
||||
|
||||
|
@ -525,6 +525,9 @@ Standard_Integer BOPAlgo_PaveFiller::SplitEdge(const Standard_Integer nE,
|
||||
//=======================================================================
|
||||
void BOPAlgo_PaveFiller::MakePCurves()
|
||||
{
|
||||
if (myAvoidBuildPCurve ||
|
||||
(!mySectionAttribute.PCurveOnS1() && !mySectionAttribute.PCurveOnS2()))
|
||||
return;
|
||||
Standard_Boolean bHasPC;
|
||||
Standard_Integer i, nF1, nF2, aNbC, k, nE, aNbFF, aNbFI, nEx;
|
||||
Standard_Integer j, aNbPBIn, aNbPBOn;
|
||||
|
16
tests/bugs/modalg_6/bug28283
Normal file
16
tests/bugs/modalg_6/bug28283
Normal 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"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user