mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-31 11:15:31 +03:00
BRepMesh_Classifier: Two-pass approach for intersection check with possibility to run it in parallel mode. First pass - bounding boxes of segments are checked for overlapping; Second pass - intersection point is calculated in case if overlapping is detected. Make NCollection_UBTree::ChangeLastNode() exported due to compilation error on Linux platform. Reason: method does not depend on template parameters, so it should be available. Revert previous change and try to use another trick for Linux Fix compilation warning on MacOS: remove redundant constant Fix regressions: do not consider insignificant loops in case of self intersections on the same wire. More sugar solution for compilation errors on NCollection_EBTree on Linux Test cases for issue CR24968
37 lines
1008 B
Plaintext
Executable File
37 lines
1008 B
Plaintext
Executable File
set TheFileName shading_wrongshape_024.brep
|
|
|
|
set bug_cross "OCC22687"
|
|
set nbcross(All) 1
|
|
|
|
set bug_freenodes "OCC22687"
|
|
|
|
set bug_withouttri "OCC22687"
|
|
if { [string compare $command "shading"] == 0 } {
|
|
set bug_area "OCC22687"
|
|
set rel_tol 1.3
|
|
set nbwithouttri(ALL) 6
|
|
set nbfreenodes(ALL) 1
|
|
### set bug_freelinks "OCC22687"
|
|
### set nbfree(ALL) 2
|
|
} else {
|
|
set nbfreenodes(ALL) 2
|
|
set nbwithouttri(ALL) 5
|
|
}
|
|
if { [string compare $command "mesh"] == 0 } {
|
|
set os "ALL"
|
|
if {[array get env os_type] != ""} {
|
|
set os $env(os_type)
|
|
}
|
|
set bug_freelinks "OCC22687"
|
|
if {[string compare $os "Mandriva2008"] == 0 || [string compare $os "MacOS"] == 0 || [string compare $os "Mandriva2010"] == 0 || [string compare $os "Debian40"] == 0 || [string compare $os "Debian60-64"] == 0 || [string compare $os "windows"] == 0} {
|
|
set nb 4
|
|
} else {
|
|
set nb 6
|
|
}
|
|
set nbfree($os) $nb
|
|
}
|
|
###if { [string compare $command "shading"] == 0 } {
|
|
### set bug_freelinks "OCC22687"
|
|
### set nbfree(ALL) 2
|
|
###}
|