mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Sometimes start point of the intersection line is in the surface boundary strictly. I.e. the parameter of this point in the surface can be equal to both 0 or 2*PI equivalently. It is important to chose correct parameter value. The algorithm of prediction is based on monotonicity property (see CylCylMonotonicity(...) function in IntPatch_ImpImpIntersection_4.gxx). Now, this function is used wrongly. The fix improves this situation. Small optimization in the code. Creation of test cases . The logic of returning value by the method BoundariesComputing() has been corrected.
34 lines
723 B
Plaintext
34 lines
723 B
Plaintext
puts "========"
|
|
puts "OCC27310"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Huge tolerance obtained in the result of intersection of two cylindrical faces
|
|
#################################################
|
|
|
|
set ExpTol 1.0e-7
|
|
set GoodNbCurv 2
|
|
|
|
restore [locate_data_file OCC496a.brep] a
|
|
restore [locate_data_file OCC496b.brep] b
|
|
|
|
explode a f
|
|
explode b f
|
|
|
|
set log [bopcurves a_8 b_2 -2d]
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: Number of curves is bad!"
|
|
}
|
|
|
|
checkreal TolReached $Toler $ExpTol 0.0 0.1
|
|
|
|
smallview
|
|
don c_*
|
|
fit
|
|
disp a_8 b_2
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|