0029807: [Regression to 7.0.0] Impossible to cut cone from prism
[occt.git] / tests / bugs / modalg_5 / bug23706_48
1 puts "========"
2 puts "OCC23706"
3 puts "========"
4 puts ""
5 ####################################
6 ## Cannot project point on curve
7 ####################################
8
9 set x 5.0
10 set y 8.0
11 set z -2.0
12 set pp_ch1 1.0371228345434986
13 set pp_ch2 0.99999999851019361
14
15 restore [locate_data_file bug23706_c08.draw] c
16 set info [proj c $x $y $z]
17
18 regexp {parameter 1 += +([-0-9.+eE]+)} $info full pp1
19 regexp {parameter 2 += +([-0-9.+eE]+)} $info full pp2
20 if { $pp1 != $pp_ch1 || $pp2 != $pp_ch2 } {
21    puts "Error : Projection is not correct"
22 } else {
23    puts "OK: Projection is correct"
24 }