mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1. The reason of the regression is not-closed intersection result. This problem has been solved (in this fix) by adding joint point to the both neighbors intersection lines (lines were extended to the this intersection point). It is made in IntPatch_WLineTool::ExtendTwoWlinesToEachOther(...) method. 2. Interface of IntPatch_PointLine and inherited classes has been changed. Methods ChangeVertex(...) and RemoveVertex(...) have been added. Test cases for this issue have been created. Small correction in the code.
35 lines
736 B
Plaintext
35 lines
736 B
Plaintext
puts "TODO OCC27300 ALL: ERROR. result is not valid for BOP"
|
|
|
|
puts "============"
|
|
puts "OCC27282"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## [Regression to 6.9.1] smesh/bugs_00/A6: Cut produces an empty shape
|
|
###############################
|
|
|
|
restore [locate_data_file bug27282_cmpd.brep] a
|
|
explode a
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects a_1
|
|
baddtools a_2
|
|
|
|
bfillds
|
|
|
|
# CUT-operation
|
|
bbop result 2
|
|
|
|
set log [bopargcheck result #F]
|
|
|
|
if { [string compare -nocase $log "Shape(s) seem(s) to be valid for BOP.\n"] } {
|
|
puts "ERROR. result is not valid for BOP"
|
|
}
|
|
|
|
checkshape result
|
|
checknbshapes result -solid 1 -face 4
|
|
checkprops result -v 2.96079e+007
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|