0030346: Modeling Algorithms - BRepPrimAPI_MakeRevol throws "BRepSweep_Translation...
[occt.git] / tests / bugs / moddata_2 / bug23224
CommitLineData
3bea4c16 1puts "============"
2puts "OCC23224"
3puts "============"
4puts ""
5#######################################################################
6# Empty result done by intersection algorithm
7#######################################################################
8
9set BugNumber OCC23224
10
11restore [locate_data_file OCC23224-line.brep] l
12restore [locate_data_file OCC23224-face.brep] f
13mksurface s f
14mkcurve c l
15intersect result c s
16set info1 [dump result]
17
18if { [regexp {Point +: ([-0-9.+eE]+)} $info1 full] == 0 } {
19 puts "Faulty ${BugNumber}"
20} else {
21 puts "OK ${BugNumber}"
22}
23
24