1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug27762_2
msv 5a0fc7ce60 0027762: Incorrect result of General Fuse operation
The algorithm of finding of extrema solutions of a point and a torus in Extrema_ExtPElS has been corrected for the case of torus having major radius equal to zero.

Test cases are added.
2016-08-18 14:46:09 +03:00

15 lines
346 B
Plaintext

puts "========"
puts "OCC27762"
puts "========"
puts ""
# This is the second script that tries to reproduce the source of the problem -
# impossibility to project a point on a torus with major radius == 0
torus s 0 10
set out [proj s 1 0 0]
if {[llength $out] != 4} {
puts "Error: projection failed"
} else {
puts "OK : projection passed"
}