mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0033060: [Regression to 7.4.0] Mesh - Sub-precisional links provoke failure on face
Slightly increase exact resolution so to cover links with approximate length equal to resolution itself on sub-resolution differences.
This commit is contained in:
parent
b315a85dd7
commit
0acc1ab47c
@ -124,10 +124,12 @@ void BRepMesh_DefaultRangeSplitter::computeTolerance(
|
|||||||
const Standard_Real aDiffU = myRangeU.second - myRangeU.first;
|
const Standard_Real aDiffU = myRangeU.second - myRangeU.first;
|
||||||
const Standard_Real aDiffV = myRangeV.second - myRangeV.first;
|
const Standard_Real aDiffV = myRangeV.second - myRangeV.first;
|
||||||
|
|
||||||
|
// Slightly increase exact resolution so to cover links with approximate
|
||||||
|
// length equal to resolution itself on sub-resolution differences.
|
||||||
const Standard_Real aTolerance = BRep_Tool::Tolerance (myDFace->GetFace());
|
const Standard_Real aTolerance = BRep_Tool::Tolerance (myDFace->GetFace());
|
||||||
const Adaptor3d_Surface& aSurface = GetSurface()->Surface();
|
const Adaptor3d_Surface& aSurface = GetSurface()->Surface();
|
||||||
const Standard_Real aResU = aSurface.UResolution (aTolerance);
|
const Standard_Real aResU = aSurface.UResolution (aTolerance) * 1.1;
|
||||||
const Standard_Real aResV = aSurface.VResolution (aTolerance);
|
const Standard_Real aResV = aSurface.VResolution (aTolerance) * 1.1;
|
||||||
|
|
||||||
const Standard_Real aDeflectionUV = 1.e-05;
|
const Standard_Real aDeflectionUV = 1.e-05;
|
||||||
myTolerance.first = Max(Min(aDeflectionUV, aResU), 1e-7 * aDiffU);
|
myTolerance.first = Max(Min(aDeflectionUV, aResU), 1e-7 * aDiffU);
|
||||||
|
17
tests/bugs/mesh/bug33060
Normal file
17
tests/bugs/mesh/bug33060
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "0033060: Mesh - Sub-precisional links provoke f a i l u r e on face"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
restore [locate_data_file bug33060.brep] result
|
||||||
|
|
||||||
|
tclean result
|
||||||
|
|
||||||
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|
||||||
|
|
||||||
|
set log [tricheck result]
|
||||||
|
if { [llength $log] != 0 } {
|
||||||
|
puts "Error : Invalid mesh"
|
||||||
|
} else {
|
||||||
|
puts "Mesh is OK"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user