0027531: Modeling Algorithms - Make the algorithm Approx_SameParameter more clear...
[occt.git] / tests / bugs / modalg_5 / bug23706_39
CommitLineData
32ca7a51 1puts "========"
2puts "OCC23706"
3puts "========"
4puts ""
5####################################
6## Cannot project point on curve
7####################################
8
9set x -4.0
10set y 4.0
11set z 1.0
12set pp_ch1 0
32ca7a51 13
14restore [locate_data_file bug23706_c05.draw] c
15set info [proj c $x $y $z]
16
17regexp {parameter 1 += +([-0-9.+eE]+)} $info full pp1
c8bf1eb7 18if { $pp1 != $pp_ch1 } {
32ca7a51 19 puts "Error : Projection is not correct"
20} else {
21 puts "OK: Projection is correct"
22}