0025952: Wrong intersection curve
[occt.git] / tests / lowalgos / intss / bug28544_2
CommitLineData
9026dea8 1puts "TODO OCC28544 ALL: Error: Big tolerance value is returned by Implicit-parametric algorithm"
2
3puts "========"
4puts "OCC28544"
5puts "========"
6puts ""
7##################################################################
8# Big tolerance value is returned by Implicit-parametric algorithm
9##################################################################
10
11restore [locate_data_file heal-Face1.rle] b1
12restore [locate_data_file Plan.rle] b2
13
14set log_1 [bopcurves b1 b2 -2d]
15regexp {Tolerance Reached=([-0-9.+eE]+)} $log_1 full tol_reached
16
17set log_2 [maxtolerance b1]
18regexp { +Face +: +Min +([-0-9.+eE]+) +Max +([-0-9.+eE]+)} $log_2 full MinFaceTolerance MaxFaceTolerance
19
20if { ${tol_reached} > ${MaxFaceTolerance} } {
21 puts "Error: Big tolerance value is returned by Implicit-parametric algorithm"
22}