1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
emv 2d0621bf94 0028579: Get rid of the obsolete QANewModTopOpe_* and QANewBRepNaming_* algorithms
1. The packages *QANewModTopOpe*, *QANewBRepNaming* and *QANewDBRepNaming* have been removed as containing obsolete features.
   The corresponding QA commands (such as OCC252, OCC307 and OCC294) and test cases have also been removed.

2. The QA command buc60609 has been removed. The corresponding test case bugs/moddata_1/buc60609 has been rewritten using b2dclassify command.
2017-04-12 17:52:33 +03:00

22 lines
531 B
Plaintext
Executable File

puts "================"
puts "BUC60609"
puts "================"
restore [locate_data_file buc60609a.brep] a
# two points will be classified
point p1 0.14 5.1
point p2 1.28 5.1
if {![regexp "IN" [b2dclassify a p1]]} {
puts "Faulty BUC60609 first: $first is not right result. It should be INSIDE"
} else {
puts "BUC60609 first OK: It is INSIDE"
}
if {![regexp "IN" [b2dclassify a p2]]} {
puts "Faulty BUC60609 second: $second is not right result. It should be INSIDE"
} else {
puts "BUC60609 second OK: It is INSIDE"
}