1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
emv 4355f260b0 0024065: Wrong intersection point
Adding test case for issue CR24065

Small corrections of test cases
2013-08-29 13:32:24 +04:00

31 lines
789 B
Plaintext

puts "========"
puts "OCC24065"
puts "========"
puts ""
#######################################################################
# Wrong intersection point
#######################################################################
restore [locate_data_file bug24065_f.brep] f
restore [locate_data_file bug24065_e.brep] e
# 1
set CMP_TOL 1.e-7
set facetolmax [tolmax f]
regexp {max tol = ([-0-9.+eE]+)} ${facetolmax} full FaceMaxTolerance
if { ${FaceMaxTolerance} > ${CMP_TOL} } {
puts "Error: invalid tolerance of face"
}
mksurface s f
mkcurve c e
intersect i c s
# 2
set CMP_DIST 1.86835288e-8
set distmax [projponf f i_2]
regexp {proj dist = ([-0-9.+eE]+)} ${distmax} full MaxDist
if { [expr abs(${MaxDist} - ${CMP_DIST})] > ${CMP_TOL} } {
puts "Error: Wrong intersection point"
}