mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Wrong border 1.0e-9 jump has deleted. Added periodicity information when projecting to surface. Period "jump" bug fixes. AppCont_LeastSquare conversion to non cdl class. AppCont_Function + AppCont_FunctionTool combined in one class providing the same functionality and converted to non cdl. Testcase modification. Test cases for issue CR24988 Fixed incorrect comparison.
39 lines
1021 B
Plaintext
39 lines
1021 B
Plaintext
puts "============"
|
|
puts "OCC24988"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong result done by projection algorithm
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug24988_s.draw] s
|
|
restore [locate_data_file bug24988_c.draw] c3d
|
|
|
|
project c2d c3d s
|
|
|
|
set log [dump c2d]
|
|
|
|
regexp {Degree +([-0-9.+eE]+), +([-0-9.+eE]+) Poles, +([-0-9.+eE]+)} ${log} full Degree Poles KnotsPoles
|
|
puts "Degree=${Degree}"
|
|
puts "Poles=${Poles}"
|
|
puts "KnotsPoles=${KnotsPoles}"
|
|
puts ""
|
|
|
|
set Pole ${Poles}
|
|
set exp_string " +${Pole} : +(\[-0-9.+eE\]+), +(\[-0-9.+eE\]+)"
|
|
regexp ${exp_string} ${log} full U_end V_end
|
|
|
|
puts "Pole=${Pole}"
|
|
puts "U_end=${U_end}"
|
|
puts "V_end=${V_end}"
|
|
puts ""
|
|
|
|
set tol_abs 1.e-7
|
|
set tol_rel 0.01
|
|
|
|
set expected_U_end 1.01988594864493
|
|
checkreal "U_end" ${U_end} ${expected_U_end} ${tol_abs} ${tol_rel}
|
|
|
|
set expected_V_end -1000.4963642098
|
|
checkreal "V_end" ${V_end} ${expected_V_end} ${tol_abs} ${tol_rel}
|