mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
18 lines
492 B
Plaintext
Executable File
18 lines
492 B
Plaintext
Executable File
puts "============"
|
|
puts "CR24886"
|
|
puts "============"
|
|
puts ""
|
|
###################################################################################
|
|
# BRepOffsetAPI_NormalProjection failure
|
|
###################################################################################
|
|
|
|
restore [locate_data_file bug24886_comp.brep] c
|
|
|
|
explode c
|
|
|
|
if [catch { nproject r c_1 c_2 } ] {
|
|
puts "Error : BRepOffsetAPI_NormalProjection failure"
|
|
} else {
|
|
puts "OK : BRepOffsetAPI_NormalProjection work good"
|
|
}
|