mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Earlier we could not put any IntPatch_Point to the intersection curve. The fix makes the algorithm of IntPatch_Points searching more precise. It is achieved by redetermination of earlier found vertices with help of minimization the distance between boundary of one intersection argument and another intersection argument (surface). 2. Additional check has been added, if IntPatch_Point adjusted to the domain boundary is true intersection point. 3. Method Contap_ArcFunction::Surface() has been added. 4. Method LastComputedPoint() has been added for IntPatch_ArcFunction and Contap_ArcFunction classes. 5. Correction in FindMaxDistance() method (see IntTools_FaceFace.cxx file) according to pure Golden-ratio minimization algorithm. Earlier this function worked wrong with small searching intervals. 6. Insignificant correction in math_BrentMinimum.cxx file (elimination of "defines"). Creation of test case for issues #27221 an #27252. Adjusting some test cases according to their new behavior. Correction according to the last remarks. Small correction of shape names for issue CR27252 Test case for issue 28210 Small correction of test case for issue 28210
38 lines
812 B
Plaintext
38 lines
812 B
Plaintext
puts "============"
|
|
puts "OCC27252"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Implicit-implicit intersection (Cylinder-Plane) loses intersection curve
|
|
#######################################################################
|
|
|
|
set GoodNbCurv 1
|
|
set MaxTol 1.0e-7
|
|
|
|
restore [locate_data_file bug27221.brep] a
|
|
explode a
|
|
mkplane f a_2
|
|
prism p f -25 0 0
|
|
explode a_1 f
|
|
explode p f
|
|
don a_1_7 p_3
|
|
|
|
set log [bopcurves a_1_7 p_3 -2d]
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: Curve Number is bad!"
|
|
}
|
|
|
|
if {${Toler} > ${MaxTol}} {
|
|
puts "Error: Tolerance is too big!"
|
|
}
|
|
|
|
smallview
|
|
don c_*
|
|
fit
|
|
display a_1_7 p_3
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|