mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031766: Modeling Algorithms - Instability on pipe bugs bug26088 test case
Correction in GeomFill_Sweep: set the flags "myExchUV", "isUReversed", "isVReversed" to FALSE (initial state) after failure of BuildKPart method.
This commit is contained in:
parent
ba98b079eb
commit
06f68996cf
@ -219,6 +219,12 @@ GeomFill_Sweep::GeomFill_Sweep(const Handle(GeomFill_LocationLaw)& Location,
|
||||
|
||||
// Traitement des KPart
|
||||
if (myKPart) isKPart = BuildKPart();
|
||||
|
||||
if (!isKPart)
|
||||
{
|
||||
myExchUV = Standard_False;
|
||||
isUReversed = isVReversed = Standard_False;
|
||||
}
|
||||
|
||||
// Traitement des produits Formelles
|
||||
if ((!isKPart) && (Methode == GeomFill_Location)) {
|
||||
@ -876,6 +882,7 @@ static Standard_Boolean IsSweepParallelSpine (const Handle(GeomFill_LocationLaw)
|
||||
// l == f - "degenerated" surface
|
||||
// UlastOnSec - UfirstOnSec > M_PI_2 - "twisted" surface,
|
||||
// it is impossible to represent with help of trimmed sphere
|
||||
isUReversed = Standard_False;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
|
@ -10,6 +10,16 @@ restore [locate_data_file bug26088_profile0.brep] pr
|
||||
# path and profile
|
||||
pipe result p pr
|
||||
|
||||
checkshape result
|
||||
|
||||
checknbshapes result -vertex 8 -edge 14 -wire 6 -face 6 -shell 1
|
||||
|
||||
set tolres [checkmaxtol result]
|
||||
|
||||
if { ${tolres} > 1.e-4} {
|
||||
puts "Error: bad tolerance of result"
|
||||
}
|
||||
|
||||
smallview
|
||||
fit
|
||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||
|
Loading…
x
Reference in New Issue
Block a user