1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug31043
oan da6b95a075 0031043: GCPnts_TangentialDeflection generates points which number is inconsistent with MinimumOfPoints Parameter
Updated crvtpoints command API to reproduce reported problem
Generate number of points according to the specified minimum value
2019-10-29 11:04:53 +03:00

55 lines
1.2 KiB
Plaintext

puts "============="
puts "0031043: GCPnts_TangentialDeflection generates points which number is inconsistent with MinimumOfPoints parameter"
puts "============="
restore [locate_data_file bug28500_shape_mesh_artifact.brep] result
tclean result
explode result f
explode result_7 e
mkcurve c result_7_1
set log [crvtpoints r c 0.01 1.57 1]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 2 } {
puts "Error : Incorrect number of points $pnts"
}
set log [crvtpoints r c 0.01 1.57 2]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 2 } {
puts "Error : Incorrect number of points $pnts"
}
set log [crvtpoints r c 0.01 1.57 3]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 3 } {
puts "Error : Incorrect number of points $pnts"
}
set log [crvtpoints r c 0.01 1.57 4]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 4 } {
puts "Error : Incorrect number of points $pnts"
}
set log [crvtpoints r c 0.01 1.57 5]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 5 } {
puts "Error : Incorrect number of points $pnts"
}
set log [crvtpoints r c 0.01 1.57 6]
regexp {Nb points : ([0-9]+)} $log full pnts
if { $pnts < 6 } {
puts "Error : Incorrect number of points $pnts"
}