mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added map of edges to BrepClass_Edge Added searching of vertices with high tolerance to BrepClass_Intersector.cxx Added check for hitting a vertex with high tolerance Added the creation of a segment for the correct work of the classifier
18 lines
490 B
Plaintext
18 lines
490 B
Plaintext
puts "================================================================="
|
|
puts "OCC31047: BRepExtrema_DistShapeShape gives wrong result"
|
|
puts "================================================================="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug31047.brep] f
|
|
|
|
point p1 -79 -282.7
|
|
point p2 -79 -282.6
|
|
|
|
if ![regexp "IN" [b2dclassify f p1]] {
|
|
puts "Error: inner point p1 is classified as OUT"
|
|
}
|
|
|
|
if ![regexp "IN" [b2dclassify f p2]] {
|
|
puts "Error: inner point p2 is classified as OUT"
|
|
}
|