mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Avoid creation of the edges with too small valid range (not allowing to split the edge) and interfering vertices. Test case for the issue.
22 lines
496 B
Plaintext
22 lines
496 B
Plaintext
puts "========"
|
|
puts "OCC29400"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Fuse of two edges creates self-interfered shape
|
|
#################################################
|
|
|
|
restore [locate_data_file bug29400_edges.brep] le
|
|
bclearobjects
|
|
bcleartools
|
|
baddcompound le
|
|
bfillds
|
|
bbuild result
|
|
|
|
checkshape result
|
|
checknbshapes result -vertex 3 -edge 2
|
|
checkprops result -l 1.78839
|
|
if {![regexp "OK" [bopcheck result]]} {
|
|
puts "Error: the result is self-interfered"
|
|
}
|