1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug27998_3
jgv f48cb55d33 0027998: Self-intersection is not detected
New method CheckFaceSelfIntersection has been added to BOPAlgo_CheckerSI: now self-intersection of each face is found as well as pairs of intersecting faces;

-method IntPatch_Intersection::Perform(S1,D1,TolArc,TolTang) is modified for more effective search of self-interasections in case of Surface Of Extrusion;

-method IntCurve_IntPolyPolyGen::Perform(C1,D1,TolConf,Tol,NbIter) is modified to detect segments of intersections.

Small correction.

Test cases are corrected.

Correction of compiler error

Fix of regressions

Names of shapes correction
2017-03-02 12:31:55 +03:00

23 lines
506 B
Plaintext

puts "============"
puts "OCC27998"
puts "============"
puts ""
######################################################
# Self-intersection is not detected
######################################################
restore [locate_data_file bug20807_coil.brep] cc
explode cc e
mkcurve cc cc_1
trim tc cc 0 6
mkedge ee tc
prism a ee 0 0 50
donly a
set info1 [bopcheck a 9]
if { [regexp "F/F: x0 x0" $info1] != 1 } {
puts "Error : bopcheck a works wrong"
} else {
puts "OK: bopcheck a works properly"
}