mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Changes: 1. class IntTools_FaceFace method: void IntTools_FaceFace::MakeCurve(const Standard_Integer Index, const Handle(Adaptor3d_TopolTool)& dom1, const Handle(Adaptor3d_TopolTool)& dom2) The value of testing parameter has been changed for the cases of infinite curves Test case for issue CR25456
18 lines
440 B
Plaintext
Executable File
18 lines
440 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC25456"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## BOPAlgo_CheckerSI reports an error on the given shape
|
|
###############################
|
|
|
|
restore [locate_data_file bug25456_shape.brep] a
|
|
|
|
set info [bopcheck a]
|
|
|
|
if {[string compare ${info} " This shape seems to be OK.\n"] == 0} {
|
|
puts "OK: BOPAlgo_CheckerSI report is good"
|
|
} else {
|
|
puts "Error : BOPAlgo_CheckerSI report is wrong"
|
|
}
|