1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
nbv ce48b00930 0026884: Cylinder/Cylinder intersection algorithm throws an exception
Check, if cylinder axes are parallel is made more carefully.
This check is brought to conformity with check if axes are parallel (see constructor AxeOperator::AxeOperator(...) in IntAna_QuadQuadGeo.cxx file)

Test case for issue CR26884
2015-11-26 12:05:36 +03:00

35 lines
844 B
Plaintext

puts "================"
puts "OCC26884"
puts "================"
puts ""
##############################################################
# Cylinder/Cylinder intersection algorithm throws an exception
##############################################################
set max_time 0.1
restore [locate_data_file bug26884-f1.brep] f1
restore [locate_data_file bug26884-f2.brep] f2
dchrono cr reset
dchrono cr start
set info [bopcurves f1 f2 -2d]
dchrono cr stop
if {![regexp {has no 3d curves} $info] ||
![regexp {has no 3d points} $info] } {
puts "Error: wrong output"
}
set logTime [dchrono cr show]
regexp {CPU user time: ([-0-9.+eE]+) seconds} $logTime full z
if { $z > ${max_time} } {
puts "Elapsed time ($z) is more than ${max_time} seconds - Error"
} else {
puts "Elapsed time ($z) is less than ${max_time} seconds - OK"
}