mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
In ProjLib_ComputeApprox algorithm, compute correct parametric tolerance from the input 3D tolerance using surface resolution, in order to pass it to low-level 2D algorithm Approx_FitAndDivide2d (instantiation of the generic class Approx_ComputeCLine). Earlier 3D tolerance was used as parametric tolerance directly, which was a problem for surfaces with too small radius of curvature. Also, eliminate redundant creation of the object of type AppParCurves_MultiCurve on each iteration in the method Approx_ComputeCLine::Compute. The post treatment of the Edge/Edge intersections has been improved. Namely: a. Making the procedure of sharing Edge/Edge intersection vertices consistent with intersection algorithm by enlarging bounding box of each vertex on half of Precision::Confusion(); b. Algorithm of computation of vertex tolerance (in order to cover tangent zone between Edges) has been changed for Line/Circle cases. Test cases for issue CR27804 Adjusting test cases according to their new behavior. Mark the test boolean/volumemaker/A8 as unstable between different versions of MSVS (2010 and 2013).
38 lines
941 B
Plaintext
38 lines
941 B
Plaintext
puts "============"
|
|
puts "OCC27804"
|
|
puts "============"
|
|
puts ""
|
|
################################################################
|
|
## Two breps cause intersections to loop for too long/infinitely
|
|
################################################################
|
|
|
|
# The main idea of the test is performance meter.
|
|
|
|
restore [locate_data_file bug27804_il1.brep] b1
|
|
restore [locate_data_file bug27804_il2.brep] b2
|
|
|
|
bsection result b1 b2
|
|
|
|
checkprops result -l 0.000335043
|
|
checkshape result
|
|
|
|
regexp {nb alone Vertices : ([-0-9.+eE]+)} [checksection result] full nbv
|
|
if { $nbv != 0 } { puts "Error : Section is incorrect" }
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 1
|
|
EDGE : 1
|
|
WIRE : 0
|
|
FACE : 0
|
|
SHELL : 0
|
|
SOLID : 0
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 3
|
|
"
|
|
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "Section curve"
|
|
|
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|