mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
17 lines
477 B
Plaintext
17 lines
477 B
Plaintext
puts "============"
|
|
puts "OCC27998"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Self-intersection is not detected
|
|
######################################################
|
|
|
|
restore [locate_data_file bug27998_shape_self-int.brep] a
|
|
|
|
set info1 [bopcheck a 9]
|
|
|
|
if { ([regexp "F/F: x18 x18" $info1] != 1) && ([regexp "F/F: x44 x44" $info1] != 1) } {
|
|
puts "Error : bopcheck a works wrong"
|
|
} else {
|
|
puts "OK: bopcheck a works properly"
|
|
} |