mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
for following issues: 0023823: The result of section operation contains redundant vertex 0023826: Boolean Common between two solids fails 0023884: Boolean Fuse between two faces fails 0023892: Missing intersection curve between two surfaces 0023976: Extremely high memory consumption on boolean operation on 64 bits 0023991: Missing section edge between two faces 0024003: Exception reaised during intersection between two faces
26 lines
703 B
Plaintext
26 lines
703 B
Plaintext
puts "TODO OCC23892 ALL: Error : number of surfaces is incorrect. Should be two intersection curves"
|
|
puts "============"
|
|
puts "OCC23892"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Missing intersection curve between two surfaces
|
|
######################################################
|
|
|
|
restore [locate_data_file bug23892_fz33] b1
|
|
restore [locate_data_file bug23892_fz46] b2
|
|
|
|
mksurface s1 b1
|
|
mksurface s2 b2
|
|
|
|
intersect res s1 s2
|
|
decho off
|
|
set info [directory]
|
|
decho on
|
|
set nb [regexp -all {res_} $info]
|
|
if {$nb != 2 } {
|
|
puts "Error : number of surfaces is incorrect. Should be two intersection curves"
|
|
} else {
|
|
puts "OK : number of surfaces is correct."
|
|
}
|