mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-14 04:29:21 +08:00
cbca11e975
- Retain coincident segments only when no regular hatching domain exists. - Add synthetic tests for limiting and partial boundary overlaps. CLA: 1144
21 lines
400 B
Plaintext
Executable File
21 lines
400 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC25478"
|
|
puts "============"
|
|
puts ""
|
|
########################
|
|
# Fillets can not touch
|
|
########################
|
|
|
|
box Box 10 10 10
|
|
explode Box E
|
|
|
|
catch { blend Fillet Box 5 Box_1 5 Box_3 } msg
|
|
|
|
if { [info exist Fillet] == 0 } {
|
|
puts "Error: Fillets can not touch"
|
|
} else {
|
|
puts "OK: Fillets can touch"
|
|
}
|
|
|
|
checkview -display Fillet -2d -path ${imagedir}/${test_image}.png
|