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/bug27325
nbv b55bd02353 0027269: Intersection algorithm produces null-length curve
Restriction line can correspond to a degenerated edge. In this case we shall return null-curve (instead of Null-length curve).
2016-04-28 14:21:40 +03:00

22 lines
560 B
Plaintext

puts "============"
puts "OCC27325"
puts "============"
puts ""
###############################
## [Regression to 6.9.1] geom/revolution_00/A1: BOPTools_AlgoTools2D::AttachExistingPCurve doesn't work
###############################
restore [locate_data_file bug27325_edge.brep] en
restore [locate_data_file bug27325_face.brep] f
explode f e
attachpcurve f_3 en f
#Check attached p-curve
pcurve result en f
#whatis result
set ind [string first "2d curve" [whatis result]]
if {${ind} < 0} {
puts "Error: PCurve has not been attached"
} else {
dump result
}