mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
16 lines
472 B
Plaintext
16 lines
472 B
Plaintext
puts "============"
|
|
puts "OCC26673"
|
|
puts "============"
|
|
puts ""
|
|
##################################
|
|
# BOPTools_AlgoTools::ComputeVV incorrectly checks two vertices for intersection
|
|
##################################
|
|
|
|
box b -1 -1 0 2 2 2e-7+1e-14
|
|
set out [bopargcheck b /RFPCS #F]
|
|
if [regexp {Self-Intersections *: YES} $out] {
|
|
puts "OK: bopargcheck found the shape self-intersecting"
|
|
} else {
|
|
puts "Error: bopargcheck must report self-intersections, but it did not"
|
|
}
|