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_7/bug31415
ifv 87c7d55469 0031415: Modeling Algorithms - Solid classifier works incorrectly on a cylinder
BRepClass3d_SClassifier.cxx : revert integration for CR29712

Test case added
2020-03-26 19:54:58 +03:00

18 lines
527 B
Plaintext

puts "======================================================="
puts "0031415: Modeling Algorithms - Solid classifier works incorrectly on a cylinder"
puts "======================================================="
puts ""
restore [locate_data_file bug31415_1.brep] comp
restore [locate_data_file bug31415_2.brep] cyl
explode comp v
mkpoint p1 comp_1
mkpoint p2 comp_2
mkpoint p3 comp_3
mkpoint p4 comp_4
foreach p {p1 p2 p3 p4} {
if {![regexp "IN" [bclassify cyl $p]]} {
puts "Error: classyfication of $p is wrong"
}
}